 body {
            font-family: Arial, sans-serif;
            margin: 0;
        }
        .navbar {
            background-color: #007BFF;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            color: white;
            margin: 10px;
            position: relative;
            z-index: 10;
        }
        .navbar .logo {
            display: flex;
            align-items: center;
        }
        .navbar .logo img {
            width: 274px;
            margin-right: 10px;
        }
        .navbar .menu {
            display: flex;
            align-items: center;
            position: relative;
            background:#007BFF;

        }
        .navbar .menu a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
        span {
            padding: 13px;
        }
        .navbar .menu a:hover {
            color: black;
        }
        .navbar .menu .explore {
            cursor: pointer;
            position: relative;
            z-index: 20;
        }
        .navbar .menu .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #007BFF;
            color: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 30;
        }
        .navbar .menu .explore.active .dropdown {
            display: block;
            width: 310px;
            padding: 17px;
            top: 212%;
            z-index: 30;
            background-color: #150b4d;
        }
        .navbar .menu .dropdown a {
            padding: 10px;
            border-bottom: 1px solid white;
        }
        .navbar .menu .dropdown .dropdown-divider {
            border-top: 1px solid white;
            margin: 5px 0;
        }
        .navbar .actions {
            display: flex;
            align-items: center;
        }
        .navbar .actions a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
        .navbar .actions .signup {
            background-color: white;
            color: #2867c5;
            padding: 5px 15px;
            border-radius: 5px;
        }
        .navbar .actions .signup:hover {
            background-color: #00e6b8;
            color: white;
        }
        .wishlist, .cart, .dropdown {
            display: flex;
            align-items: center;
        }
        .menu li {
            list-style: none;
            padding: 10px;
        }
        .wishlist, .cart, .notifications {
            position: relative;
            margin-right: 15px;
        }
        .wishlist a, .cart a, .notifications a {
            font-size: 24px;
            color: #333;
        }
        .wishlist .count, .cart .count, .notifications .count {
            position: absolute;
            top: -6px;
            right: -5px;
            background-color: red;
            color: white;
            border-radius: 70%;
            padding: 1px 6px;
            font-size: 10px;
        }
        .dropdown-menu-right {
            right: 0;
            left: auto;
        }
        .cart {
            position: relative;
        }

        .cart-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #ffffff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px;
            width: 300px;
            z-index: 100;
            border-radius: 5px;
            max-height: 400px; /* Limit the height */
            overflow-y: auto; /* Enable scrolling if items exceed the height */
        }

        .cart-item {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }

        .cart-item img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
        }

        .cart-item .item-details {
            flex-grow: 1;
        }

        .cart-item .item-details p {
            margin: 0;
        }

        .cart-item .item-name {
            font-weight: bold;
            color: black;
        }

        .cart-item .item-price {
            color: gray;
        }

        /* Button Styling */
        .cart-buttons a {
            text-decoration: none;
            color: white;
            background-color: #2867c5;
            padding: 10px;
            border-radius: 5px;
            margin-top: 11px;
            display: block;
            text-align: center;
            font-size: 15px;
        }

        .cart-buttons a:hover {
            background-color: #005bb5;
        }

        /* 'More Items' Text */
        .more-items-text {
            font-style: italic;
            color: gray;
            text-align: center;
            padding: 10px 0;
            font-size: 14px;
        }

        /* Hover Effect for Cart Dropdown */
        .cart-toggle:hover + .cart-dropdown,
        .cart-dropdown:hover {
            display: block;
        }
/* Modal Styling */
#loginModalContent {
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#loginModalContent .modal-header {
    border-bottom: 1px solid #ddd;
    background-color: #007BFF;
    color: white;
    padding: 20px;
    text-align: center;
}

#loginModalContent .modal-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto;
    display: block;
}

#loginModalContent .close {
    color: white;
    font-size: 1.5rem;
    opacity: 1;
}

#loginModalContent .modal-body {
    padding: 25px;
    background-color: #f9f9f9;
}

#loginForm {
    display: flex;
    flex-direction: column;
}

#loginForm .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

#loginForm label {
    font-weight: bold;
    color: #333; /* Ensure labels are visible */
    margin-bottom: 0.5rem;
}

#loginForm input[type="email"],
#loginForm input[type="password"],
#loginForm select {
    width: 100%;
    padding: 15px; /* Increased padding for better visibility */
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1rem;
    color: #333; /* Ensure text is visible */
}

#loginForm select {
    height: 50px; /* Increased height for select */
}

#loginForm input[type="email"]::placeholder,
#loginForm input[type="password"]::placeholder {
    color: #888; /* Placeholder text color */
}

#loginForm .checkgroup {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

#loginForm .checkgroup label {
    color: #333;
    margin-left: 8px;
}

#loginForm .btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: white;
    background-color: #086FBC;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#loginForm .btn:hover {
    background-color: #005bb5;
}

#loginForm a {
    color: #005bb5;
    text-decoration: none;
    margin-top: 10px;
    display: block;
    text-align: right;
}

#loginForm a:hover {
    text-decoration: underline;
    color: #003f8f;
}



        /* Profile Dropdown Styling */
        .dropdown-menu {
            background-color: #ffffff;
            border: 1px solid #ddd;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 10px;
            border-radius: 8px;
            right: 0;
            left: auto;
            display: none;
            position: absolute;
            z-index: 1000;
        }

        #profileDropdown.active + .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: black;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-menu a:hover {
            background-color: #f0f0f0;
            color: #005bb5;
            border-radius: 5px;
        }

        .dropdown-divider {
            margin: 8px 0;
            border-top: 1px solid #ddd;
        }

        /* Profile Image Styling */
        #profileDropdown img {
            border-radius: 50%;
            border: 2px solid #f9f9f9;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        #profileDropdown:hover img {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }