.clasificacion {
  background: #f3f3f4;
  border-left: 6px solid #e7eaec;
  border-right: 6px solid #e7eaec;
  border-radius: 4px;
  color: #676a6c;
  margin-bottom: 2px;
  padding: 16px
}

.list_stage {
  background: #f3f3f4;
  border-left: 6px solid #e7eaec;
  border-right: 6px solid #e7eaec;
  border-radius: 4px;
  margin-bottom: 2px;
  padding: 6px
}

.etapa-completada-persona {
  background: #f3f3f4;
  border-left: 6px solid #55D17B;
  border-right: 6px solid #55D17B;
  border-radius: 4px;
  color: #676a6c;
  margin-bottom: 2px;
  padding: 16px
}

.vertical-timeline-icon-user {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
}

.etapa-completada {
  background: #5E4DEA;
  color: #FFFFFF;
}

.label-primary,
.ingreso,
.activa,
.activo,
.badge-primary {
  background-color: #2ecc71;
  color: #FFFFFF;
}

.label-success,
.activoconcargos,
.terminado,
.badge-success {
  background-color: #1c84c6;
  color: #FFFFFF;
}

.label-warning,
.egreso,
.inactivo,
.archivada,
.archivado,
.suspendido,
.badge-warning {
  background-color: #f8ac59;
  color: #FFFFFF;
}

.label-danger,
.dadodebaja,
.cancelado,
.badge-danger {
  background-color: #ed5565;
  color: #FFFFFF;
}

.label-info,
.activosincargos,
.badge-info {
  background-color: #23c6c8;
  color: #FFFFFF;
}

.label-white,
.enobservacion,
.badge-disable {
  background-color: #2A2E36;
  color: #8B91A0;
}

.error-import-people {
  border: 1px dashed #ed5565
}

.success-import-people {
  border: 1px dashed #5E4DEA
}

.warning-import-people {
  border: 1px dashed #f8ac59
}

.float-right {
  float: right !important;
}

.float-left {
  float: left !important;
}

@media only screen and (min-width : 768px) {
  .menu-iconos {
    display: block !important;
  }

  .menu-colapse {
    display: none !important;
  }

}

@media only screen and (max-width: 767px) {
  .menu-iconos {
    display: none !important;
  }

  .menu-colapse {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .mobile {
    display: none !important;
  }
}

.popover {
  z-index: 2050 !important
}

.voluntario_no_confirmado {
  border: 2px solid #f8ac59;
}

.voluntario_confirmado {
  border: 2px solid #21b9bb;
}

.voluntario_declinado {
  border: 2px solid #ed5565;
}

.custom_date_picker {
  position: relative;
  width: 100%;
  color: green;
}

.custom_date_picker:before {
  position: absolute;
  content: attr(data-date);
  display: inline-block;
  color: black;
}

.custom_date_picker::-webkit-datetime-edit,
input::-webkit-inner-spin-button,
input::-webkit-clear-button {
  display: none;
}

.custom_date_picker::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  color: black;
  opacity: 1;
}

.clickable-card {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
}

.clickable-card:active {
    transform: scale(0.98); /* Efecto apachurrado */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-message {
    background-color: #6c5ce7;
    color: white;
    border-radius: 10px;
    padding: 6px 12px;
    margin-bottom: 8px;
    display: inline-block;
    max-width: 80%;
    word-break: break-word;
}

.message-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.message-text {
    flex: 1;
}

.message-actions {
    display: flex;
    gap: 6px;
}

.message-actions i {
    font-size: 12px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.message-actions i:hover {
    opacity: 1;
    transform: scale(1.2);
}