/**
Theme Name: Viva La Burma - Child Theme
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
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: viva-la-burma-child-theme
Template: astra
*/
/* HIDE DEFAULT DOKAN SALES & EARNINGS REPORTS ON DASHBOARD */

/* Hide the main Sales This Month widget */
.dokan-dashboard-wrap .dokan-dashboard-widget.dokan-sales-report-widget {
    display: none !important;
}

/* Hide the main Sales Report Chart widget */
.dokan-dashboard-wrap .dashboard-widget.dokan-chart-widget {
    display: none !important;
}

.dokan-vendor-info-wrap{border:1px solid #0cc0df!important;}

// 3. (Optional) Add custom CSS to style the new order status icons on the Orders page
add_action( 'admin_head', 'add_custom_order_status_icon_css_printing_delivered' );
function add_custom_order_status_icon_css_printing_delivered() {
    echo '<style>
        /* Style for "Printing" status */
        .order-status.status-printing {
            background: #9b59b6; /* Purple */
            color: #ffffff;
        }
        .order-status.status-printing::after {
            font-family: WooCommerce;
            content: "\e013"; /* Cog icon */
            font-weight: normal;
        }
        
        /* Style for "Delivered" status */
        .order-status.status-delivered {
            background: #2ecc71; /* Green */
            color: #ffffff;
        }
        .order-status.status-delivered::after {
            font-family: WooCommerce;
            content: "\e015"; /* Checkmark icon */
            font-weight: normal;
        }
		
    </style>';
}
