/* Import Open Sans Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* Style for the menu icon */
.menu-icon {
    width: 24px;  /* Adjust size as needed */
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Apply Light Grey Font with Larger & Stretched Look */
.light-300 {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    color: #666;
    font-size: 18px; /* Increased size */
    letter-spacing: 0.5px; /* Slightly stretched horizontally */
    line-height: 1.4; /* Increased height for a taller appearance */
}

/* Apply Light Font to the Whole Menu */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: "Open Sans", sans-serif; /* Apply Open Sans globally */
    font-weight: 300;
    color: #666;
}

/* Top menu styles */
.top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Left section */
.left-section {
    display: flex;
    align-items: center;
}

/* Page title */
.page-title {
    font-size: 22px; /* Slightly larger */
    font-weight: 300; /* Light weight */
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-right: 40px;
}

/* Spacer below the menu */
.menu-spacer {
    position: relative;
    padding-top: 25px;
    width: 100%;
}

/* Body container styling */
.body-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
/* Default link styling */
.order-link, .nav-link {
    margin-left: 20px;
    padding: 10px 18px; /* Adjust padding for pill shape */
    font-size: 16px; /* Larger size */
    font-weight: 300;
    color: #007bff;
    background-color: transparent;
    border-radius: 20px; /* Rounded like a pill */
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

/* Hover effect - Blue Pill with White Text */
.order-link:hover, .nav-link:hover {
    background-color: #007bff;
    color: white !important;
    text-decoration: none;
}

/* Right section - Cog Icon */
.right-section {
    position: relative;
}

/* Adjust cog icon to match menu text */
.settings-icon {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown menu items */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Dropdown links */
.dropdown-content a {
    display: block;
    padding: 10px;
    color: #666;
    font-size: 16px; /* Slightly larger */
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Dropdown hover effect */
.dropdown-content a:hover {
    background-color: #007bff;
    color: white !important;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
