    * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }  

        body { background: #f8f8f8; color: #d40000; } 
        body {
            font-family: Arial, sans-serif;
            background-color: #fff;
            color: #d40000;
            text-align: center;
            padding: 20px;
        }
                 

                /* Navbar */

        .navbar { 
            position: fixed; 
            top: 0; left: 0; width: 100%; 
            display: flex; justify-content: space-between; align-items: center; 
            padding: 15px 10%; background: white; 
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); 
            z-index: 1000;
        }
 
        .navbar {
    border-bottom: 1px solid #FF0000;  /* Change color as needed */
}
        .logo img { height: 40px; }

        .nav-links { 
            list-style: none; 
            display: flex; gap: 20px; 
        }
        .nav-links li { display: inline; }
        .nav-links a { 
            color: #333; text-decoration: none; font-size: 16px; font-weight: bold; 
        }
        .btn-login { 
            background: #FF0000; padding: 8px 15px; 
            border-radius: 5px; color: white; 
            text-decoration: none; font-weight: bold; 
        }

        /* Hamburger Menu */
        .menu-icon {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .menu-icon { display: block; position: relative; z-index: 1100; }
            
            .nav-links { 
                position: absolute; top: 75px; right: 0; 
                background: white; width: 100%; 
                flex-direction: column; 
                text-align: center; padding: 0;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
                
                /* Initially hidden */
                height: 0;
                overflow: hidden;
                transition: height 0.5s ease-in-out;
            }
            .nav-links.active { height: auto; padding: 10px 0; }
            
            .nav-links li { padding: 10px; border-bottom: 1px solid #ddd; }
        }
       
       
#userEmail {
    max-width: 180px;  /* ✅ Increased width */
    overflow: hidden;  
    text-overflow: ellipsis; /* ✅ Shows "..." when text overflows */
    white-space: nowrap;  
    display: inline-block;
    font-size: 16px; /* ✅ Slightly bigger text */
    font-weight: 500;
    vertical-align: middle;
    padding: 0 10px; /* ✅ Add some spacing */
}
        h1 {
            color: #d40000;
        }
        .loader {
            border: 4px solid rgba(212, 0, 0, 0.3);
            border-radius: 50%;
            border-top: 4px solid #d40000;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: auto;
            display: none;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .orders-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .order-card {
            background: #fff;
            border: 2px solid #d40000;
            border-radius: 8px;
            padding: 15px;
            width: 300px;
            box-shadow: 0px 4px 10px rgba(212, 0, 0, 0.3);
            transition: transform 0.3s ease-in-out;
        }
        .order-card:hover {
            transform: scale(1.05);
        }
        .image-container {
            display: flex;
            justify-content: center;
            gap: 5px;
        }
        .order-img {
            width: 48%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
        }
        .order-img.single {
            width: 50%;
        }
        .order-details {
            text-align: left;
            padding: 10px;
            color: black;
        }
        .btn {
            padding: 8px;
            background: #d40000;
            color: white;
            border: none;
            width: 100%;
            margin-top: 10px;
            cursor: pointer;
            border-radius: 5px;
        }
        .btn:hover {
            background: #a00000;
        }

    /* Bottom Footer */
    .footer-bottom {
        margin-top: 30px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 0, 0, 0.3);
    }

    .footer-bottom p {
        font-size: 14px;
        color: #333;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: left;
        }

        .footer-section {
            text-align: left;
        }

        .social-icons {
            justify-content: left;
        }
    }

    @media (max-width: 600px) {
        .footer-intro h2 {
            font-size: 24px;
        }
        .footer-intro p {
            font-size: 16px;
        }
    }