/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
}

header {
    text-align: center;
    background-color: #005f73;
    color: white;
    padding: 20px 10px;
}

header img {
    max-width: 100%;
    height: auto;
    border-bottom: 5px solid #0a9396;
}

h1 {
    margin-top: 10px;
}

.tabla-container {
    padding: 20px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

th, td {
    padding: 10px 8px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 50px;
}

th {
    background-color: #0a9396;
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #f0f0f0;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #005f73;
    color: white;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    th, td {
        font-size: 12px;
        padding: 6px;
    }
    h1 {
        font-size: 24px;
    }
}
