/* =========================
   CONTENEDOR GENERAL
========================= */
.tabla-estrados {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

/* =========================
   TÍTULO
========================= */
.tabla-estrados h2 {
    margin-bottom: 20px;
    color: #444;
    font-size: 22px;
    font-weight: 600;
}

/* =========================
   TABLA PRINCIPAL
========================= */
.tabla-estilo {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* =========================
   ENCABEZADO
========================= */
.tabla-estilo th {
    background-color: #e5e5e5;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

/* =========================
   CELDAS
========================= */
.tabla-estilo td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

/* =========================
   HOVER
========================= */
.tabla-estilo tr:hover {
    background-color: #f9f9f9;
}

/* =========================
   ANCHO DE COLUMNAS
========================= */
.tabla-estilo th:nth-child(1),
.tabla-estilo td:nth-child(1) {
    width: 18%;
}

.tabla-estilo th:nth-child(2),
.tabla-estilo td:nth-child(2) {
    width: 20%;
}

.tabla-estilo th:nth-child(3),
.tabla-estilo td:nth-child(3) {
    width: 30%;
}

.tabla-estilo th:nth-child(4),
.tabla-estilo td:nth-child(4),
.tabla-estilo th:nth-child(5),
.tabla-estilo td:nth-child(5) {
    width: 16%;
    text-align: center;
    vertical-align: middle;
}

/* =========================
   BOTÓN "VER TEMA"
========================= */
.btn-tema-toggle {
    margin-top: 8px;
    padding: 5px 12px;
    background-color: #a02142;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-tema-toggle:hover {
    background-color: #7a1a32;
}

/* =========================
   TEXTO OCULTO DEL TEMA
========================= */
.tema-oculto {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* =========================
   BOTÓN PDF
========================= */
.btn-pdf {
    color: #c8102e;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.btn-pdf:hover {
    text-decoration: underline;
}

/* =========================
   RESPONSIVO (IMPORTANTE)
========================= */
@media (max-width: 768px) {

    .tabla-estrados {
        width: 95%;
        padding: 10px;
    }

    .tabla-estilo th,
    .tabla-estilo td {
        font-size: 12px;
        padding: 10px;
    }

    .btn-tema-toggle {
        font-size: 11px;
        padding: 4px 8px;
    }
}

.buscador-container {
    margin-bottom: 15px;
}

#buscador {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}