/* Styles for the SalesTable component */

.sales-table-container {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sales-table-container h2 {
    margin-bottom: 20px;
    color: #333;
}

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

.sales-table th,
.sales-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.sales-table th {
    background-color: #f2f2f2;
    color: #555;
}

.sales-table tr:hover {
    background-color: #f1f1f1;
}

.sales-table td {
    color: #666;
}
