
.table-container {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-size: 12px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f9f9f9;
    color: #333;
}

tr:hover {
    background-color: #f1f1f1;
} 