body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    padding: 20px;
}

.titulo {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 900px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

th {
    background: #2c3e50;
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

tr:hover {
    background: #eaf2ff;
    transition: 0.2s;
}