/* User Profile Dropdown Styles - Bubble Design */
.navbar-user {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color_2), var(--color_2));
    border-radius: 10px;
    padding: 5px 15px 5px 5px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar-user:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.navbar-user__thumb {
    position: relative;
    margin-right: 10px;
}

.navbar-user__thumb img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.navbar-user:hover .navbar-user__thumb img {
    transform: scale(1.05);
}

.navbar-user__info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-user__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.navbar-user__role {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
    color: #fff;
}

.navbar-user .icon {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.navbar-user:hover .icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Bubble Style */
.dropdown-menu--sm {
    border-radius: 15px !important;
    overflow: hidden;
    animation: bubble-appear 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

/* @keyframes bubble-appear {
    0% { 
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
} */

.dropdown-menu__item {
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 5px;
}

.dropdown-menu__item:hover {
    background-color: rgba(var(--color_1-rgb, 41, 98, 255), 0.1);
    transform: translateX(3px);
}

.dropdown-menu__caption.fw-bold {
    font-weight: 600 !important;
    margin-bottom: 2px;
}

.icon-circle {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    position: relative;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* User Info Bubbles */
.user-info-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.info-bubble {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.info-bubble i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.info-bubble.role {
    background-color: var(--color_2);
    color: var(--color_1, #2962ff);
}

.info-bubble.email {
    background-color: rgba(25, 135, 84, 0.15);
    color: #198754;
}

.info-bubble.location {
    background-color: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}

.dropdown-menu__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(var(--color_1-rgb, 41, 98, 255), 0.15);
    color: var(--color_1, #2962ff);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.dropdown-menu__item:hover .dropdown-menu__icon {
    transform: scale(1.1);
}
@media (max-width: 420px) {
    .navbar__right .dropdown-menu {
        left: unset !important; 
        right: 0px !important;
        top: 15px !important;
        border-radius: 10px !important;
    }
    .navbar__right .dropdown{
        position: unset;
    }
}