.profile-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.profile-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.profile-button:hover {
    transform: scale(1.1);
}

.profile-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    display: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.profile-dropdown.show {
    display: block;
}

.profile-dropdown-item {
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.profile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.profile-info {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.profile-name {
    color: #fff;
    font-weight: bold;
    margin-bottom: 4px;
}

.profile-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}      