body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 2rem;
}

.table-container {
    max-width: 900px;
    margin: 5em auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 2rem;
}

h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.material-table {
    width: 100%;
    border-collapse: collapse;
}

.material-table th, .material-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.material-table th {
    background-color: #1976d2;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.material-table tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

.material-table td {
    color: #555;
}

@media (max-width: 500px) {
    .table-container {
        font-size: 12px;
    }
    .only-desktop {
        display: none;
    }
}