body {
    background-color: #7A241D; /* Color de fondo general */
    color: #F5F0CB; /* Color del texto */
}
.card {
    background-color: #CF7D77; /* Color complementario */
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-primary {
    background-color: #1D7A78; /* Color de resalte */
    border-color: #1D7A78;
}
.btn-primary:hover {
    background-color: #145956; /* Sombra más oscura para el botón en hover */
    border-color: #145956;
}
.form-control {
    border-radius: 5px;
}

#reporte-table {
    overflow-x: auto; /* Scroll horizontal */
}
#reporte-table table {
    width: 100%;
    border-collapse: collapse;
}
#reporte-table th, #reporte-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}
#reporte-table th {
    background-color: #54b38b;
    color: white;
    font-weight: bold;
}
#reporte-table td {
    background-color: #ebdbcb;
    color: black;
}
#pagination {
    text-align: center;
    margin: 15px 0;
}
#pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #54b38b;
    color: white;
    cursor: pointer;
}
#pagination button.disabled {
    background-color: #d8d8d8;
    cursor: not-allowed;
}

#pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #54b38b;
    color: white;
    cursor: pointer;
}

#pagination button.active {
    background-color: #1d7a78;
    font-weight: bold;
    cursor: default;
}

#pagination button:disabled {
    background-color: #d8d8d8;
    cursor: not-allowed;
}

#reporte-summary p{
    margin: 0 !important;
}