/* Profile Dropdown Styles */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-dropdown .profile img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-dropdown .profile-icon {
    width: 36px;
    height: 36px;
    background: var(--grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
}

.profile-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: var(--light);
    border: 1px solid var(--grey);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
    margin-top: 4px;
    display: none;
}

.profile-dropdown .dropdown-menu.show {
    display: block;
}

.profile-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--dark);
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-dropdown .dropdown-item:hover {
    background-color: var(--grey);
    color: var(--dark);
}

.profile-dropdown .dropdown-item i {
    margin-right: 8px;
    font-size: 16px;
}

.profile-dropdown .dropdown-divider {
    margin: 4px 0;
    border-top: 1px solid var(--grey);
}
