/* Navigation Styling */
        .woocommerce-MyAccount-navigation {
            flex: 1;
            min-width: 250px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .woocommerce-MyAccount-navigation ul {
            list-style: none;
        }
        
        .woocommerce-MyAccount-navigation ul li {
            border-bottom: 1px solid #f1f1f1;
            transition: all 0.3s ease;
        }
        
        .woocommerce-MyAccount-navigation ul li:last-child {
            border-bottom: none;
        }
        
        .woocommerce-MyAccount-navigation ul li a {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .woocommerce-MyAccount-navigation ul li a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }
        
        .woocommerce-MyAccount-navigation ul li a:hover {
            background-color: #f8f9fa;
            color: #3498db;
            padding-left: 25px;
        }
        
        .woocommerce-MyAccount-navigation ul li a:hover:before {
            width: 4px;
        }
        
        .woocommerce-MyAccount-navigation-link.is-active a {
            background-color: #3498db;
            color: white;
        }
        
        .woocommerce-MyAccount-navigation-link--customer-logout a {
            color: #e74c3c;
        }
        
        .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
            background-color: #fdf0ed;
            color: #c0392b;
        }
        
        /* Content Styling */
        .woocommerce-MyAccount-content {
            flex: 2;
            min-width: 300px;
            background: white;
            border-radius: 10px;
        }
        
        .woocommerce-MyAccount-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f1f1;
        }
        
        .woocommerce-MyAccount-content p {
            margin-bottom: 15px;
        }
        
        .woocommerce-MyAccount-content a {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        
        .woocommerce-MyAccount-content a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        /* Dashboard Content */
        .welcome-message {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            border-left: 4px solid #3498db;
        }
        
        .dashboard-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .dashboard-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .dashboard-card i {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 15px;
        }
        
        .dashboard-card h4 {
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        /* Footer */
        .entry-footer {
            margin-top: 40px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .woocommerce {
                flex-direction: column;
            }
            
            .woocommerce-MyAccount-navigation,
            .woocommerce-MyAccount-content {
                width: 100%;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .dashboard-links {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            
            
            .woocommerce-MyAccount-content {
                padding: 20px;
            }
            
            }

        