* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: #203745;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.language-selector {
    display: inline-block;
    margin-right: 20px;
}

#languageDropdown {
    padding: 6px 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M70 90L40 60h60z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}


.logo-img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3a5a78;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.user-avatar:hover {
    background-color: #4a6a88;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 15px 0;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1001;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-header {
    padding: 0 20px 10px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.user-email {
    font-size: 14px;
    color: #203745;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.user-role {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #203745;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.menu-item:hover {
    background-color: #f8f9fa;
    color: #0066cc;
    padding-left: 22px;
}

.menu-item svg {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.menu-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 8px 0;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}


#dropdownNotificationCount {
    color: red;
    font-size: 20px;
    margin-left: auto;
}


.notification-badge {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -5px;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .dropdown-menu {
        min-width: 200px;
    }
}