/* estilos*/

html {
    overflow-y: scroll; /* Siempre muestra la scrollbar vertical */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
}

.footer {
    /*position: fixed; */
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5; /* Color de fondo */
    line-height: 60px; /* Altura del footer */
    z-index: 1000;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .text-muted {
    margin: 0;
}



body {
  overflow-y: scroll;
  padding-right: 8px;
  padding-bottom: 60px;    
  padding-top: 56px;
  background: #ffffff;
  background: linear-gradient(to right, #ffffff, #f9de37);
  font-family: 'Poppins', sans-serif;
}

.logo {
    max-width: 200px; 
    height: auto; 
    margin-bottom: 15px; /* Espacio debajo del logo, similar al margen del H1 */
}

.logo-menu {
    max-width: 140px; 
    height: auto; 
    margin-bottom: 1px; /* Espacio debajo del logo, similar al margen del H1 */
}

.login-page {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Oculta la barra de desplazamiento */
}

.main-container {
    
  min-height: calc(100vh - 56px - 60px); /* Altura del navbar y footer */
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px #00000070;
  margin-top: 20px;
}

.mt-5, .my-5 {
    margin-top: 1rem!important;
}


.form-control, .btn {
  border-radius: 50px; 
}

#tablaListado .btn-editar, #tablaListado .btn-eliminar, #tablaListado .btn-agregar-doc, #tablaListado .btn-descargar-doc, #tablaListado .btn-user-plus, #tablaListado .btn-user-minus {
    border-radius: 5px;
}

#tablaListado{
    font-size : 0.78rem;
}

#tablaListado .btn-user-plus {
    color: white;
    background-color: rgb(59, 89, 152);
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: none; 
  }
  
#tablaListado .btn-user-plus:hover {
    color: white;
    background-color: rgb(170, 239, 167);
    font-size: 0.85rem;
    /*padding: 0.5rem 0.5rem;*/
  }
  
#tablaListado .btn-user-minus {
    color: white;
    background-color: rgb(59, 89, 152);
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: none; 
  }
  
#tablaListado .btn-user-minus:hover {
    color: white;
    background-color: rgb(224, 8, 19);
    font-size: 0.85rem;
    /*padding: 0.5rem 0.5rem;*/
  }

#tablaListado .btn-descargar-doc {
    color: white;
    background-color: rgb(59, 89, 152);
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: none; 
  }
  
#tablaListado .btn-descargar-doc:hover {
    color: white;
    background-color: rgb(170, 239, 167);
    font-size: 0.85rem;
    /*padding: 0.5rem 0.5rem;*/
  }

#tablaListado .btn-agregar-doc {
    color: white;
    background-color: rgb(59, 89, 152);
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: none; 
  }
  
#tablaListado .btn-agregar-doc:hover {
    color: white;
    background-color: rgb(170, 239, 167);
    font-size: 0.85rem;
    /*padding: 0.5rem 0.5rem;*/
  }

#tablaListado .btn-editar {
    color: white;
    background-color: rgb(59, 89, 152);
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: none; 
  }
  
#tablaListado .btn-editar:hover {
    color: white;
    background-color: rgb(170, 239, 167);
    font-size: 0.85rem;
    /*padding: 0.5rem 0.5rem;*/
  }

#tablaListado .btn-eliminar {
    color: white;
    background-color: rgb(59, 89, 152);
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: none; 
  }
  
#tablaListado .btn-eliminar:hover {
    color: white;
    background-color: rgb(224, 8, 19);
    font-size: 0.85rem;
    /*padding: 0.5rem 0.5rem;*/
  }
  

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 100%;
    max-width: 320px;
    padding: 40px;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 #00000070;
}


.login-form h1 {
  color: #333;
  margin-bottom: 30px;
}

.form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}

.form-control:focus {
  z-index: 2;
}

.btn {
  font-size: 15px;
  font-weight: bold;
}

.login-form h1 {
  color: #333;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form h1 i {
  font-size: 2rem; /* Ajusta este valor según prefieras */
  margin-bottom: 0.5rem; /* Añade un poco de espacio entre el icono y el texto */
}

.icono-circulo, .fa-circulo, .cara-completa {
  display: flex; /* Usa flex para un mejor control de la alineación */
  justify-content: center;
  align-items: center;
  width: 80px; /* Asegúrate de que ambos elementos tengan el mismo tamaño */
  height: 80px;
  margin: auto; /* Centra los elementos horizontalmente en el contenedor */
  position: relative;
  border-radius: 50%; /* Para mantener la forma circular */
  background-color: #007bff; /* Color azul para coincidir con el botón */
  color: white; /* Color del ícono */
  font-size: 44px; 
}

/* Ocultar por defecto la cara con ojos */
.cara-completa {
  display: none;
}

.custom-control.custom-switch {
  margin-top: 1rem;
  /*margin-bottom: 1rem;  Espacio entre el switch y el formulario */
}

.btn-secondary, .btn-modal-accept {
  background-color: #007bff !important; /* El !important asegura que este estilo tenga prioridad */
  border-color: #007bff !important; /* También establece el color del borde si es necesario */
}

.ocultar {
    display: none;
}


.icono-circulo i {
  margin: 0;
}

.text-truncate {
  max-width: 100px; /* Ajusta esto según tus necesidades */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-truncate-clientes {
  max-width: 250px; /* Ajusta esto según tus necesidades */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

h2 {
  margin-bottom: 1em; 
}

#search {
  margin-bottom: 1rem; /* Espacio entre el buscador y la tabla */
}

/* Personaliza toda la barra de desplazamiento (scrollbar) */
::-webkit-scrollbar {
    width: 8px; /* Ancho de la scrollbar */
}

/* Personaliza el riel de la scrollbar */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color del fondo del riel */
}

/* Personaliza la manija de la scrollbar */
::-webkit-scrollbar-thumb {
    background: #888; /* Color del fondo de la manija */
}

/* Cambia el color de la manija al pasar el ratón por encima o al hacer clic en ella */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color al pasar el ratón por encima */
}

.icono-circulo {
  position: relative;
  
}

.ojos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80px;
  height: 30px;
}

.ojo {
  background-color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;
}

.parpado {
  background-color: black;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 7.5px;
  left: 7.5px;
  transition: top 0.3s;
}

.boca {
  background-color: black;
  width: 20px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
  left: 30px;
  transition: height 0.3s, width 0.3s, border-radius 0.3s;
}

/* Estilo de boca abierta */
.boca.abierta {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.calendar-container {
    max-width: 100%;
    margin: auto;
}

.calendar-container table {
    width: 100%;
}

.dias-semana{
    text-align: center;
    background-color: #f0f0f0;
}

.calendar-day {
    cursor: pointer;
    text-align: center;
}

.calendar-day:hover {
    background-color: #f0f0f0;
    
}

.dia-con-solicitud {
    background-color: #7FFFD4; /* Color verde agua */
    color: #000000; /* Color de texto, ajusta según necesites */
}

.hidden-option {
    display: none;
}

.text-success {
    color: green; /* Texto verde para pagos efectuados */
}

.text-danger {
    color: red; /* Texto rojo para pagos no efectuados */
}

@media (max-width: 767.98px) {
  #search {
    margin-bottom: 0.5rem; /* Menos espacio en dispositivos móviles si es necesario */
  }
}