/**
 * @package     NOE Main Menu
 * @subpackage  Module
 * @author      TV Noe
 * @copyright   (C) 2025 TV Noe. All rights reserved.
 * @license     Internal use only – not for redistribution
 */

.noemainmenu {
    list-style: none;
    display: flex;
    align-items: center;
    flex: 1;
    margin: 0;
    padding: 0;
}

.noemainmenu-left {
    display: flex;
    gap: 10px;
}

.noemainmenu-right {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.noemainmenu-item {
    display: inline-block;
}

.noemainmenu-item a {
    color: #fff;
    text-decoration: none;
    padding: 18px 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-bottom 0.3s ease;
    border-bottom: 4px solid transparent;
}

.noemainmenu-item a:hover,
.noemainmenu-item.active > a {
    border-bottom: 4px solid #fff;
}

.noemainmenu-item a.live {
    color: #ff0000;
}

.noemainmenu-item a.live:hover,
.noemainmenu-item.active > a.live {
    border-color: #ff0000;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff0000;
    display: inline-block;
    flex-shrink: 0;
}

.noemainmenu-item a.account-link {
    color: #00ff00;
}

.noemainmenu-item a.account-link:hover,
.noemainmenu-item.active > a.account-link {
    border-color: #00ff00;
}

.noemainmenu-item a.search-link {
    color: #fff;
    font-size: 18px;
    border-bottom: none;
    padding: 21px 10px;
}

.noemainmenu-separator {
    width: 1px;
    height: 30px;
    background-color: #fff;
    align-self: center;
}

