/* main-menu.css */

.fc-body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.fc-navbar {
    background-color: white;
    color: #333;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1100;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
}

.fc-navbar-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.fc-navbar-logo-container {
    margin-right: 20px;
}

.fc-navbar-logo img {
    height: 50px;
}

.fc-navbar-menu-left,
.fc-navbar-menu-right {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.fc-navbar-menu-left {
    margin-left: 0;
    margin-top: 10px;
}

.fc-navbar-menu-right {
    margin-left: auto;
    padding-right: 20px;
}

.fc-navbar-item {
    margin: 0px 10px;
    position: relative;
}

.fc-navbar-item a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: all 0.3s ease;
    padding: 5px 10px 5px 10px;
    border-radius: 4px;
}

.fc-navbar-item a:hover {
    background-color: rgb(118, 75, 162);
    color: #ffffff;
    box-shadow: 0 0px 4px rgba(0, 0, 0.0, 0.4), 0 0 10px rgba(0, 0, 0.0, 0.4);
}

.fc-navbar-item2 {
    margin: 0px 10px;
    position: relative;
}

.fc-navbar-item2 a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: all 0.3s ease;
}

.fc-navbar-item2 a:hover {
    background-color: #67de8d;
    color: #ffffff;
    box-shadow: 0 0px 4px rgba(0, 0, 0.0, 0.), 0 0 10px rgba(0, 0, 0.0, 0.4);
}

.fc-dropdown,
.fc-login-submenu {
    display: none;
    position: absolute;
    background-color: #e2e2e2;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    top: 100%;
    left: 0px;
    border-radius: 4px;
    list-style-type: none;
    padding: 0;
}

.fc-user-submenu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    top: 40px;
    left: -100px;
    border-radius: 4px;
    list-style-type: none;
    padding: 0;
}

.fc-login-submenu {
    padding: 1px 5px 1px 5px;
}

.fc-dropdown-item a,
.fc-user-submenu a {
    padding: 6px 16px;
    display: block;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
}

.fc-dropdown-item a:hover {
    background-color: rgba(118, 75, 162);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0.0, 0.2), 0 0 10px rgba(0, 0, 0.0, 0.2);
}

.fc-user-submenu a:hover {
    background-color: rgba(118, 75, 162);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0.0, 0.2), 0 0 10px rgba(0, 0, 0.0, 0.2);
}

.fc-navbar-item:hover .fc-dropdown {
    display: block;
}

.fc-active-tab {
    background-color: #e0e0e0;
    color: #45a7cc;
}

.fc-user-submenu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 12px 16px;
    display: block;
    transition: all 0.3s ease;
}

.fc-user-initials {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #67de8d;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 0;
    margin: 0;
    line-height: 32px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.9);
}

.fc-user-initials::before {
    content: attr(data-initial);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .fc-navbar-container {
        flex-direction: column;
    }
    .fc-navbar-menu-left,
    .fc-navbar-menu-right {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .fc-navbar-menu-right {
        margin-left: 0;
    }
    .fc-navbar-item {
        width: 100%;
        text-align: center;
    }
    .fc-dropdown,
    .fc-login-submenu,
    .fc-user-submenu {
        position: static;
        box-shadow: none;
        width: 100%;
    }
}

.fc-mobile-menu {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1101;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.fc-mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.fc-mobile-logo {
    height: 30px;
    width: auto;
}

.fc-hamburger {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
}

.fc-hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
}

.fc-mobile-menu-items {
    display: none;
    padding: 20px;
}

.fc-mobile-menu-items ul {
    list-style-type: none;
    padding: 0;
}

.fc-mobile-menu-items ul li {
    margin-bottom: 10px;
    font-weight: bold;
    color: #45a7cc;
}

.fc-mobile-menu-items ul li a {
    text-decoration: none;
    color: #49834d;
    font-size: 18px;
}

#fc-mobileUserSubmenu,
#fc-mobileLoginSubmenu {
    display: none;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .fc-desktop-menu {
        display: none;
    }

    .fc-mobile-menu {
        display: block;
    }
}

.fc-submit-button-main-menu {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

.fc-submit-button-main-menu:hover {
    background-color: #45a049;
}