/* Style dla dropdown menu użytkownika */
#user-menu-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #4682B4;
    font-size: 20px;
    padding: 10px;
    transition: all 0.3s ease;
}

#user-menu-trigger:hover {
    color: #000;
}

.user-dropdown {
    position: fixed;
    right: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0); /* Zmienione z translateY(10px) */
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
    width: 200px;
    margin-top: 5px; /* Dodaje odstęp od górnego menu */
}

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

.user-dropdown:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4682B4, #6CA0D3);
}

.user-dropdown-content {
    padding: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #4682B4;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.logout-btn {
    border-top: 1px solid #eee;
    color: #e74c3c;
}

.logout-btn:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}