.bodyLogin {
  background-image: url("../../uploads/fondologin.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.logoPerfil {
    padding: 40px
}

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Estilo delgado y personalizado para el scroll del sidebar */
.custom-scrollbar {
  max-height: calc(100vh - 100px); /* Ajusta si tienes header/logo fijo */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;  /* Scroll suave en iOS */
  scrollbar-width: thin;              /* Firefox */
  scrollbar-color: #888 transparent;
  height: 100%;
}

/* WebKit (Chrome, Safari, Edge) */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* OPCIONAL: Mejora para pantallas pequeñas */
@media (max-width: 768px) {
  .custom-scrollbar {
    max-height: calc(100dvh - 80px); 
    padding-bottom: 20px; 
    -webkit-overflow-scrolling: touch;
  }
}





  .responsive-table {
    overflow-x: auto;
    width: 100%;
    border:1px;
  }

  .responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px; /* Evita que las columnas se junten demasiado */
  }

  .responsive-table th,
  .responsive-table td {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
  }

  @media (max-width: 600px) {
    .responsive-table table {
      font-size: 14px;
      min-width: 400px;
    }
  }

