@CHARSET "UTF-8";

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-right {
    margin-left: auto;
}

.user-menu-container {
    position: relative;
    display: inline-block;
/* 		font-family: 'Inter', sans-serif; */
    z-index: 1100;
}

.user-profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.user-profile-trigger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.avatar-circle {
    min-width: 35px;
    height: 35px;
    padding: 0 10px;
    background: #ffffff;
    color: #dc2626;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 50px;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.user-menu-container:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown li a {
    display: block;
    padding: 0px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.user-dropdown li a:hover {
    background: #f3f4f6;
    color: #c83535;
}

.menu-header {
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
    line-height: 10px
}

.menu-element {
    line-height: 50px;
}

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

.logout-btn {
    color: #dc2626 !important;
}
