html, body{
    position: relative;
    height: 100%;
}

/* Index */
h1 {
    color: grey;
}
h2, a {
    color: grey;
    padding-top: 20px;
}

#btnEntrar {
    background-color: purple;
    color: white;
}

/* Menú */
.lista {
    color: grey;
}

/* Perfil */
.jumbotron {
    width: 80%;
    color: white;
}

#perfil {
    max-width: 100%;
    height: auto;
    width: 150px;
}
.btnPerfil {
    width: 30%;
}
#bienvenida {
    color: grey;
}
.botones {
    align-items: center;
    float: none;
    display: table-cell;
    vertical-align: bottom;
}
.btn {
    text-align: center;
}
#btn2 {
    margin-top: 20px;
}

/* Noticias */
.info {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.contenido {
    text-align: justify;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.contenido:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}



/* ✅ Asegurar que el checkbox y el texto estén alineados */
label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* Espacio entre checkbox y texto */
    font-size: 16px !important;
}

/* ✅ Ajustar el espacio entre los checkboxes */
label input[type="checkbox"] {
    margin-right: 5px !important;
}

D:\xampp\htdocs\intranet\assets\css\More

/* Ajuste para los checkboxes */
label input[type="checkbox"] {
    margin-right: 10px !important;
}
/* Ajustar el ancho de las columnas dentro del modal */
.modal-body .table th:nth-child(1),
.modal-body .table td:nth-child(1) {
    width: 10% !important; /* ID */
}

.modal-body .table th:nth-child(2),
.modal-body .table td:nth-child(2) {
    width: 40% !important; /* Insignia */
}

.modal-body .table th:nth-child(3),
.modal-body .table td:nth-child(3) {
    width: 30% !important; /* Fecha */
}

.modal-body .table th:nth-child(4),
.modal-body .table td:nth-child(4) {
    width: 20% !important; /* Acción */
}
/* Ajustar el ancho de las columnas dentro del modal */
.modal-body .table th:nth-child(1),
.modal-body .table td:nth-child(1) {
    width: 10% !important; /* ID */
}

.modal-body .table th:nth-child(2),
.modal-body .table td:nth-child(2) {
    width: 40% !important; /* Insignia */
}

.modal-body .table th:nth-child(3),
.modal-body .table td:nth-child(3) {
    width: 30% !important; /* Fecha */
}

.modal-body .table th:nth-child(4),
.modal-body .table td:nth-child(4) {
    width: 20% !important; /* Acción */
}
/* Hacer el modal ocupar toda la pantalla */
.modal-dialog {
    max-width: 100% !important;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}


