﻿
[x-cloak] {
    display: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfdfd;
    color: #1e293b;
    overflow-x: hidden; 
}


.glass-nav {
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50; 
}


.nav-link-custom {
    position: relative;
    transition: all 0.3s ease;
}

    .nav-link-custom::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #2563eb;
        transition: width 0.3s ease;
    }

    .nav-link-custom:hover::after {
        width: 100%;
    }


.user-info-text {
    line-height: 1.1;
}


@media (max-width: 767px) {
    .glass-nav {
        height: auto;
    }
}
