﻿.profile-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background-color: var(--bs-bg-gray-color);
    border-radius: 8px;
    padding: 0;
    z-index: 9999;
    border-top: 4px solid var(--bs-orange-custom);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.profile-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--bs-orange-custom) transparent;
}

.profile-wrapper:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.profile-menu-item:hover {
    background-color: #fff4e6;
    color: var(--bs-orange-custom);
    padding-left: 25px;
}

.profile-menu-item i {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.profile-logout {
    color: #dc3545;
}

.profile-logout:hover {
    background-color: #fff5f5;
    color: #dc3545;
}

@media (max-width: 991px) {
    .profile-dropdown {
        display: none;
    }
}
