/* ========================================
   CABINET MENU STYLES
   Стили навигации личного кабинета
   ======================================== */

/* === CABINET MENU CONTAINER === */

.cabinet-menu {
    display: flex !important;
    flex-direction: row !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 52px;
}

.cabinet-menu li {
    display: flex;
    align-items: center;
    position: relative;
}

.cabinet-menu li a {
    display: block;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 16px;
    border-top: solid 1px rgba(255, 255, 255, 0.48);
    border-bottom: solid 1px rgba(255, 255, 255, 0.17);
    text-decoration: none;
    transition: all 0.25s ease;
    background: rgba(90, 90, 103, 0.2);
    color: white;
    line-height: 20px;
    backdrop-filter: blur(6px);
    font-weight: 500;
}

.cabinet-menu li:hover a {
    background: rgba(41, 96, 135, 0.55);
    border-top-color: rgba(255, 255, 255, 0.71);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.cabinet-menu li.current-menu-item a {
    background: rgba(41, 96, 135, 0.4);
}

/* === MENU ICONS === */

li.cb-icon a {
    padding-left: 44px !important;
    background-repeat: no-repeat !important;
    background-position: 16px center !important;
    background-size: 20px 20px !important;
}

li.cb-home a { background-image: url("../images/user.svg") !important; }
li.cb-transaction a { background-image: url("../images/transactions.svg") !important; }
li.cb-exchange a { background-image: url("../images/exchange.svg") !important; }
li.cb-remit a { background-image: url("../images/remit.svg") !important; }
li.cb-template a { background-image: url("../images/template.svg") !important; }

/* === LOGOUT BUTTON (RED) === */

li.cb-logout {
    margin-left: 80px;
}

li.cb-logout a {
    background-image: url("../images/exchange-red.svg") !important;
    background-color: rgba(166, 26, 26, 0.4) !important;
    color: #F44747 !important;
}

li.cb-logout:hover a {
    background-color: rgba(166, 26, 26, 0.55) !important;
}

/* === COMING SOON STATE === */

li.cb-remit,
li.cb-template {
    position: relative;
}

li.cb-remit a,
li.cb-template a {
    background-color: rgba(90, 90, 103, 0.2) !important;
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

li.cb-remit::after,
li.cb-template::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: url("../images/clock.png") center / contain no-repeat;
    z-index: 10;
}
