/*
Theme Name: Astra Child Theme
Theme URI: https://example.com/my-awesome-child-theme/
Description: A child theme for the Astra theme.
Author: Your Name
Author URI: https://example.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-awesome-child-theme
*/

/* Add your child theme styles here */


.wcss-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wcss-stats-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.wcss-filter-container {
    margin-bottom: 20px;
}

.wcss-filter-container label {
    margin-right: 10px;
    font-weight: bold;
    color: #333;
}

.wcss-filter-container select {
    padding: 8px;
    min-width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.wcss-info {
    margin-top: 10px;
    color: #666;
    font-size: 12px;
}

.wcss-tabs {
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.wcss-tabs .wcss-tab {
    display: inline-block;
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #0073aa;
    border-radius: 6px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.wcss-tabs .wcss-tab.active {
    color: #ffffff !important;
    background-color: #0073aa !important;
    border-color: #0073aa !important;
}

.wcss-tabs .wcss-tab:hover {
    color: #ffffff !important;
    background-color: #005177 !important;
    border-color: #005177 !important;
}

.wcss-table-section {
    margin-bottom: 30px;
}

.wcss-table-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.wcss-table-wrap {
    overflow-x: auto;
}

.wcss-stats-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #ddd;
}

.wcss-stats-table th,
.wcss-stats-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}

.wcss-stats-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.wcss-stats-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

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

.wcss-total-orders {
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    color: #333;
}