.main-menu .navigation>li>a span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu .navigation>li>a span::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.15) 70%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    z-index: -1;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.main-menu .navigation>li:hover>a span,
.main-menu .navigation>li.active>a span {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.main-menu .navigation>li:hover>a span::after,
.main-menu .navigation>li.active>a span::after {
    opacity: 1;
    transform: scale(1);
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.18) 70%,
            rgba(255, 255, 255, 0.08) 100%);
}

.main-menu .navigation>li.active>a span::after {
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.22) 70%,
            rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Buttons  */

.search-btn,
.sidebar-trigger {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.search-btn::before,
.sidebar-trigger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #2A7787;
    border-radius: 50%;
    z-index: 0;
}

.search-btn .icon {
    position: relative;
    z-index: 1;
    color: white;
    display: block;
    font-size: 16px;
}

.sidebar-trigger img {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.search-btn:hover::before,
.sidebar-trigger:hover::before {
    background-color: #1a5a6b;
    transform: translate(-50%, -50%) scale(1.05);
}

.sidebar-icon {
    display: flex;
    align-items: center;
}


.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.search-btn.glass-effect {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn.glass-effect,
.sidebar-trigger.glass-effect {}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0s;
}

.search-btn.glass-effect::before {
    border-radius: 50%;
}


/* Logo  */

.wide-logo {
    width:auto !important;
    height:75px !important;
}


.wide-colored-logo {
    width:auto !important;
    height:50px !important;
}