body {
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
}

h1 { text-align: center; color: #002d5e; margin-bottom: 30px; }

.table-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    overflow-x: auto; /* Para que sea responsivo en móviles */
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #004a99;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

tr:hover { background-color: #f9f9f9; }

/* Estilo del botón Responder */
.btn-responder {
    display: inline-block;
    padding: 8px 15px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-responder:hover {
    background-color: #218838;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}