.woocommerce-spending-stats {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
}
.woocommerce-spending-stats h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
}
.tabs {
    display: flex;
    margin-bottom: 30px;
}
.tab-button {
    background-color: #f8f9fa;
    border: none;
    color: #2c3e50;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}
.tab-button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.tab-button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.tab-button.active {
    background-color: #3498db;
    color: #fff;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
table.dataTable {
    width: 100% !important;
    margin-bottom: 20px !important;
    border-collapse: collapse;
}
table.dataTable th,
table.dataTable td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}
table.dataTable th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}
table.dataTable tr:hover {
    background-color: #f8f9fa;
}
table.dataTable tr.current-month,
table.dataTable tr.current-year,
table.dataTable tr.current-user {
    background-color: #e8f4fd;
    font-weight: bold;
}
table.dataTable tr.current-month:hover,
table.dataTable tr.current-year:hover,
table.dataTable tr.current-user:hover {
    background-color: #d1e8fb;
}

.woocommerce-spending-summary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}
.spending-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}
.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}
.spending-chart {
    height: 300px;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .woocommerce-spending-summary {
        padding: 20px;
    }
    .spending-stats {
        flex-direction: column;
    }
    .stat-item {
        margin-bottom: 15px;
    }
    .spending-chart {
        height: 300px;
    }
}