/* Container for Prensa */
.prensa-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: var(--bg-dark, rgba(0,0,0,0.8));
    border: 1px solid var(--accent-red, #ff2a2a);
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.2);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.prensa-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.prensa-container .big-text {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light, #f0f0f0);
}

.table-responsive {
    overflow-x: auto;
}

.prensa-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: var(--text-light, #f0f0f0);
}

.prensa-table th, 
.prensa-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prensa-table th {
    background-color: rgba(255, 42, 42, 0.1);
    color: var(--accent-red, #ff2a2a);
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.prensa-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.links-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.links-cell a {
    color: var(--accent-red, #ff2a2a);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.links-cell a:hover {
    text-decoration: underline;
    color: #ff5555;
    text-shadow: 0 0 5px rgba(255, 42, 42, 0.5);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

.prensa-footer-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light, #f0f0f0);
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9em;
}
