.user-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.user-info label {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 4px;
    display: block;
}

.user-info .info-item {
    margin-bottom: 16px;
}

.user-info .profile-value {
    color: #f8fafc;
    font-size: 1rem;
    margin-bottom: 0;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    word-break: break-word;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

#userProfileModal .modal-content {
    background: #0f1729;
    border: 2px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.15);
}

#userProfileModal .modal-header {
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

#userProfileModal .modal-footer {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

#userProfileModal .btn-close {
    filter: invert(1);
}

#navUserBadge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

#navUserBadge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

#navUserBadge .fas {
    font-size: 1.1rem;
}

.modal.fade .modal-dialog {
    transform: scale(0.95) translateY(-10px);
    transition: all 0.2s ease-out;
    opacity: 0;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}