.elementor-12 .elementor-element.elementor-element-5db8e32{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-711ada3 *//**
 * ========================================
 * CUSTOM DASHBOARD WRAPPER - COMPLETE STYLING
 * ========================================
 * Theme Color: #2f7a6f
 * Minimal CSS for beautiful dashboard display
 */

/* ========================================
   HIDE DEFAULT WOOCOMMERCE PARAGRAPHS
   ======================================== */

.woocommerce-MyAccount-content > p:first-of-type,
.woocommerce-MyAccount-content > p:nth-of-type(2) {
    display: none !important;
}

/* ========================================
   DASHBOARD CONTAINER
   ======================================== */

.custom-dashboard-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ========================================
   USER ROLE BADGE
   ======================================== */

.user-role-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.customer-badge { background: #2f7a6f; color: white; }
.admin-badge { background: #ff9800; color: white; }
.seller-badge { background: #ff6b35; color: white; }

/* ========================================
   WELCOME SECTION
   ======================================== */

.dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #2f7a6f 0%, #1f5a52 100%);
    padding: 30px;
    border-radius: 12px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(47, 122, 111, 0.3);
}

.user-avatar img {
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.user-info h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.user-email {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
    display: block !important;
}

/* ========================================
   STATS CARDS
   ======================================== */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(47, 122, 111, 0.15);
    border-color: #2f7a6f;
}

.stat-icon {
    font-size: 36px;
    line-height: 1;
}

.stat-icon img.emoji {
    width: 36px;
    height: 36px;
    display: inline-block;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #2f7a6f;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block !important;
}

/* ========================================
   QUICK ACTIONS
   ======================================== */

.dashboard-quick-actions {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.dashboard-quick-actions h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #2f7a6f;
    font-weight: 600;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
}

.quick-action-card:hover {
    background: #2f7a6f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(47, 122, 111, 0.3);
    border-color: #2f7a6f;
}

.quick-action-card.logout:hover {
    background: #f44336;
    border-color: #f44336;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1;
}

.action-icon img.emoji {
    width: 32px;
    height: 32px;
    display: inline-block;
}

.action-title {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-welcome {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .user-info h2 {
        font-size: 20px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dashboard-welcome {
        padding: 20px 15px;
    }
    
    .user-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .user-info h2 {
        font-size: 18px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-icon,
    .stat-icon img.emoji {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .action-icon,
    .action-icon img.emoji {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
    
    .dashboard-quick-actions {
        padding: 20px 15px;
    }
    
    .quick-action-card {
        min-height: 100px;
        padding: 15px;
    }
}

@media (max-width: 360px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.quick-action-card:focus {
    outline: 2px solid #2f7a6f;
    outline-offset: 2px;
}

.quick-action-card:focus:not(:focus-visible) {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    .stat-card:hover,
    .quick-action-card:hover {
        transform: none !important;
    }
}

@media (prefers-color-scheme: dark) {
    .stat-card,
    .dashboard-quick-actions {
        background: #1e1e1e;
        border-color: #333;
    }
    
    .stat-number {
        color: #3fccb4;
    }
    
    .stat-label {
        color: #999;
    }
    
    .quick-action-card {
        background: #2a2a2a;
        color: #e0e0e0;
    }
}

@media print {
    .dashboard-welcome {
        background: #2f7a6f;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .quick-action-card {
        display: none !important;
    }
}/* End custom CSS */