.profile-area {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #a855f7;
    object-fit: cover;
}

.dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 350px;
    background-color: rgba(0, 0, 10, 0.8);
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 14px;
    display: none;
    z-index: 999;
}

.dropdown.show {
    display: block;
}

.dropdown p {
    margin: 0;
    padding: 6px 0;
    font-size: 13px;
    opacity: 0.9;
}

.logout-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #a855f7;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.logout-btn:hover {
    background: #9333ea;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Always show theme toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
}

/* Hamburger only shows on small screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}