.week-row {
    display: grid;
    grid-template-columns: 100px 120px 100px 120px;
    gap: 20px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.week-row:hover {
    background: #f8f9fa;
}

.week-revenue {
    font-weight: bold;
    color: #28a745;
}

.week-orders, .week-average {
    color: #666;
}

.controls {
    margin: 20px 0;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.date-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-range label {
    font-weight: 500;
}

.date-range input[type="date"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #f0f0f0;
}

button.primary {
    background: #007bff;
    color: white;
    border-color: #0056b3;
}

button.primary:hover {
    background: #0056b3;
}

.quick-range {
    padding: 8px 16px;
    background: #e0e0e0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.quick-range:hover {
    background: #d0d0d0;
}

.primary {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.primary:hover {
    background: #0056b3;
}

.data-container {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chart-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.orders-table th {
    background: #f5f5f5;
    font-weight: bold;
}

.orders-table tr:hover {
    background: #f8f9fa;
}
