/* =========================================
   PROFILE DROPDOWN STYLES
   ========================================= */

.profile-dropdown {
    display: inline-block;
    margin-left: 0;
    position: relative;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-toggle {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    color: #fff;
    cursor: pointer;
    font-size: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.profile-toggle:hover {
    transform: scale(1.1);
}

body.light .profile-toggle {
    color: #333;
}

.profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 15px;
    min-width: 250px;
    display: none;
    z-index: 1000;
    margin-top: 10px;
}

.profile-dropdown:hover .profile-menu {
    display: block;
}

.profile-header {
    text-align: center;
}

.profile-header h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.profile-header p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

.profile-menu hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #222;
}

.profile-logout {
    display: block;
    color: #0ba026;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.profile-logout:hover {
    background-color: #0ba026;
    color: #fff;
}

.profile-logout i {
    margin-right: 8px;
}

body.light .profile-header h4 {
    color: #333;
}

body.light .profile-header p {
    color: #666;
}

body.light .profile-menu {
    background: #f5f5f5;
    border-color: #ddd;
}

body.light .profile-menu hr {
    border-top-color: #ddd;
}

body.light .profile-logout {
    color: #0ba026;
}

body.light .profile-logout:hover {
    background-color: #0ba026;
    color: #fff;
}
