/* ==== ESTILO GENERAL ==== */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #f4f6f9;
    color: #2c3e50;
}

h1, h2, h3, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
}

p {
    font-size: 15px;
    margin-bottom: 0.4rem;
}

/* ==== BOTÓN REGRESAR ==== */
.btn-outline-primary {
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ==== TÍTULO PRINCIPAL ==== */
h1 {
    font-size: 28px;
    padding-bottom: 6px;
    border-bottom: 3px solid #0d6efd;
    margin-bottom: 25px;
}

/* ==== INTRO TEXT BOX ==== */
.intro-box {
    background: #eaf2ff;
    border-left: 5px solid #0d6efd;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #2c3e50;
}

/* ==== Tablas Custom ==== */
.custom-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    font-size: 15px;
    border-collapse: separate;
    border-spacing: 0;
}

.custom-table thead {
    background-color: #1f2f57 !important; /* Azul oscuro */
    color: white !important;
    text-align: center;
}


.custom-table th {
    font-weight: 600;
    padding: 12px 15px;
    vertical-align: middle;
    font-size: 15px;
    border-bottom: 2px solid #dee2e6;
    background-color: #4e7abc !important;
    color: #ffffff !important;
}

.custom-table td {
    padding: 12px 15px;
    vertical-align: middle;
    text-align: center;
    color: #333;
}

.custom-table tr:nth-child(even) {
    background-color: #f4f8fc;
}

.custom-table tr:hover {
    background-color: #eef3fa;
}


.table-responsive {
    margin-bottom: 30px;
}

/* ==== NOTA INFORMATIVA ==== */
.alert-info {
    background-color: #d9f1ff;
    border-left: 5px solid #17a2b8;
    color: #0c5460;
    font-size: 15px;
}

/* ==== ACORDEÓN DE DISTRITOS ==== */
.accordion {
    border-radius: 8px;
    overflow: hidden;
}

/* ===============================
   ENCABEZADOS DEL ACORDEÓN DE DISTRITOS
================================= */
.accordion-button {
    background-color: #1f2f57 !important;
    color: #fff !important;
    font-weight: bold;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #162346 !important;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1); /* Cambia el ícono de flecha a blanco */
}

.accordion-button.collapsed {
    background-color: #1f2f57 !important;
    color: #fff !important;
}


.accordion-item {
    border: none;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.accordion-body {
    background-color: #ffffff;
    padding: 20px;
    border-top: 1px solid #dee2e6;
}

/* ==== ICONOS Y TITULITOS ==== */
.custom-table th i {
    color: #fff;
}


.accordion-body h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.accordion-body i {
    color: #0d6efd;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }f

    .btn-outline-primary {
        width: 100%;
        margin-bottom: 15px;
    }

    .accordion-body {
        padding: 15px;
    }
}
