/* Estilos personalizados */

.user-avatar{
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 100%;
}

.modal__register {
    background: #009688;
    color: #fff;
}
.modal__update {
    background: #17a2b8;
    color: #fff;
}

#divLoading {
  position: fixed; /* Fija el div en la pantalla */
  top: 0; /* Posiciona en la parte superior */
  left: 0; /* Posiciona en la parte izquierda */
  width: 100%; /* Ocupa todo el ancho de la pantalla */
  height: 100%; /* Ocupa todo el alto de la pantalla */
  background: rgba(214, 234, 230, .65);
  display: flex; /* Usa flexbox para centrar el contenido */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  z-index: 9999; /* Asegura que esté por encima de otros elementos */
  display: none;
}
#divLoading img {
  max-width: 100px; /* Ajusta el tamaño del icono de carga si es necesario */
}



/* ESTILOS DEL HOME */
.content-searchs {
    width: 100%;
    height: auto;
    padding: 20px 0;
    display: flex;
    gap: 24px;

    & .search {
        
        & label {
            font-size: 1.2rem;
            font-style: normal;
            line-height: 2.6rem;
            color: var(--text);

        }
        
        & div {
          

            & input {
              outline: none;
              width: 150px;
              height: 30px;
              border-radius: 5px;
              border: 2px solid #f39c12;
              padding: 8px;
              color: #f39c12;
              margin-right: 8px;
            }
        }
    }
  }
  .content-main {
      width: 100%;
      height: auto;

      & .section {
          padding: 14px 0;
          height: auto;

          & div {
            padding: 4px 0;
            display: flex;
            align-items: center;


              & p {
                font-size: 1rem;
                color: var(--text);
                margin: 0;
              }

              & span {
                font-size: .8rem;
                color: var(--gray);
                padding-left: 14px;
              }
          }
      }
  }

  .button {
    padding: 5px 10px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: none;
  }


  .button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }


  .table {
    width: 100% !important;
    border-collapse: collapse;
    margin-top: 20px;
  }
  .table th, .table td {
    border: 1px solid #dddddd;
    padding: 10px;
    text-align: center;
  }
  .table th {
    background-color: #f2f2f2;
  }
  .icon {
    width: 20px;
    height: 20px;
  }
  .green-dot {
    color: green;
    font-size: 1.5em;
  }

  @media (min-width: 768px){
    .content-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    }

    .table-api {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 24px; */
    }
  }
  
  @media (min-width: 768px) {
  #modalCorreo .modal-dialog {
    max-width: 95% !important;
  }
}