.header-Core{
    background-color: #5cbdd8 !important;
    color: white;
}

.card-title a:hover {
    text-decoration: none !important;
}

.btn-none {
    border: none;
    background: none;
}

@media (max-width: 767px) {
    .full{
        width: 100%;
    }
}

.flex-f{
    display: flex;
}

@media (max-width: 770px) {
    .flex-f{
        display: block;
    }
}

.texto_f {
    max-height: 3.6em; /* 3 líneas a 1.2em por línea */
    line-height: 1.2em; /* Ajusta según tu tamaño de fuente y espacio entre líneas */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 líneas completas */
    -webkit-box-orient: vertical;
}

.descripcion_f {
    width: 300px; /* Ancho deseado para mostrar */
    overflow: hidden; /* Oculta el texto que no cabe en el contenedor */
    white-space: nowrap; /* Evita el ajuste automático de líneas */
    text-overflow: ellipsis
}

.navf-active{
    background-color: #ef8157;
    border-radius: 50px;
}

input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    /*  slider progress trick  */
    overflow: hidden;
    border-radius: 16px;
  }

  /* Track: webkit browsers */
  input[type="range"]::-webkit-slider-runnable-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
  }

  /* Track: Mozilla Firefox */
  input[type="range"]::-moz-range-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
  }

  /* Thumb: webkit */
  input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #6bd098 ;
    /*  slider progress trick  */
    box-shadow: -407px 0 0 400px #6bd098 ;
  }


  /* Thumb: Firefox */
  input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #6bd098 ;
    /*  slider progress trick  */
    box-shadow: -407px 0 0 400px #6bd098 ;
  }

  .range {
    display: flex;
    align-items: center;
    max-width: 500px;
    background: #fff;
    padding: 0px 10px;
  }

   /*Scroll para componentes*/
.componente-con-scroll {
    height: 590px; /* Define la altura del componente */
    overflow-y: auto; /* Añade una barra de desplazamiento vertical cuando sea necesario */
    padding: 10px; /* Agrega relleno para mejorar la apariencia */
    box-sizing: border-box;
  }

  .hr-slider{
    margin-left: 1rem;
    margin-right: 1rem ;
    border: 1;
    border-top: 1px solid rgba(255, 255, 255, 56%);
  }

  .mIntegrante{
    width: 50%;
    margin-left:25%;
  }

  @media (max-width: 992px) {
      .mIntegrante{
          width: 70%;
          margin-left:15%;
      }
  }

.sidebar[data-color="bark"]:after {
  background: #4a9bb2  !important;
}
.sidebar[data-color="bark"] .nav li a,
.sidebar[data-color="bark"] .logo .simple-text {
  color: #f5f1e6 !important;
}
.sidebar[data-active-color="bark-accent"] .nav li.active > a,
.sidebar[data-active-color="bark-accent"] .nav li.active > a i {
  color: #f4a261 !important;
}
/* Switch Personalizado */
.switch-container {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.switch-toggle {
  position: relative !important;
  display: inline-block !important;
  width: 50px !important;
  height: 28px !important;
}

.switch-toggle input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.switch-slider {
  position: absolute !important;
  cursor: pointer !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: #ccc !important;
  transition: 0.4s !important;
  border-radius: 28px !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.switch-slider:before {
  position: absolute !important;
  content: "" !important;
  height: 22px !important;
  width: 22px !important;
  left: 3px !important;
  bottom: 3px !important;
  background-color: white !important;
  transition: 0.4s !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.switch-toggle input:checked + .switch-slider {
  background-color: #5cbdd8 !important;
}

.switch-toggle input:checked + .switch-slider:before {
  transform: translateX(22px) !important;
}

.switch-toggle input:focus + .switch-slider {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(92, 189, 216, 0.5) !important;
}

.switch-label {
  font-size: 14px !important;
  color: #333 !important;
  user-select: none !important;
  font-weight: 500 !important;
}

/* Dropzone Personalizado */
.dropzone-wrapper {
  position: relative;
  margin-top: 20px;
}

.dropzone {
  border: 2px dashed #5cbdd8 !important;
  border-radius: 8px !important;
  background: #f8fafb !important;
  padding: 40px 20px !important;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropzone:hover {
  border-color: #ef8157 !important;
  background: #fff5f3 !important;
}

.dropzone.dz-drag-hover {
  border-color: #ef8157 !important;
  background: #fff5f3 !important;
}

.dz-message {
  margin: 0 !important;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.dz-message strong {
  display: block;
  margin-bottom: 10px;
  color: #5cbdd8;
}

.dz-message span {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  font-weight: normal;
}

.dz-preview {
  margin: 10px 5px !important;
  display: inline-block !important;
}

.dz-preview .dz-image {
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.dz-preview .dz-image:hover {
  border-color: #5cbdd8;
}

.dz-preview .dz-details {
  background: rgba(0, 0, 0, 0.04) !important;
  border-radius: 6px;
}

.dz-preview .dz-filename {
  color: #333;
  font-weight: 500;
}

.dz-preview .dz-size {
  color: #999;
  font-size: 11px;
}

.dz-preview .dz-error-message {
  background: #ff6b6b;
  color: white;
  border-radius: 4px;
  padding: 8px;
}

.dz-preview.dz-success .dz-success-mark {
  opacity: 1;
}

.dz-preview.dz-success .dz-success-mark svg {
  background: #6bd098;
  border-radius: 50%;
}

.dz-message-info {
  font-size: 11px;
  color: #ef8157;
  margin-top: 12px;
  font-weight: 600;
  display: block;
}
/* Loading Spinner Styles */
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 9999; display: none; justify-content: center; align-items: center; pointer-events: all; }
.loading-spinner-container { text-align: center; background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.loading-spinner { border: 4px solid #f3f3f3; border-top: 4px solid #ef8157; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
.loading-text { color: #333; font-family: 'Montserrat', sans-serif; font-weight: 600; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
