body {
    background-color: white;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px;
}
.tabla-container {
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 15px rgba(0,0,0,0.30);
}

thead {
    background-color: #f3f3f3;
}

th {
    text-align: left;
    padding: 16px;
    font-size: 16px;
    color: #333;
}

td {
    padding: 14px 16px;
    font-size: 15px;
    color: #333;
}

tr:nth-child(even) {
    background-color: #e6eef8;
}

.data:hover {
    background-color:#dce6f0;
}

