/* ============================================
   PENDING DELETIONS BADGE - Standard Notification Style
   ============================================ */

/* Container with avatar and user name - relative positioning for absolute badge */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    cursor: pointer;
}

/* User name styling */
.user-name {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Avatar container - relative positioning for absolute badge */
.user-avatar-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Avatar styling */
.user-avatar {
    position: relative;
    z-index: 1;
}

/* Badge button - positioned over avatar */
.pending-deletions-avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 2;
    width: auto;
    height: auto;
}

/* Badge count - standard notification style */
.pending-deletions-avatar-badge .badge {
    background: var(--primary) !important;
    color: white !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    padding: 1px 6px !important;
    border-radius: 20px !important;
    min-width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
}





    .pending-deletions-avatar-badge .badge {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        border-color: var(--bg-primary) !important;
    }

/* Responsive - mobile */
@media (max-width: 480px) {
    .user-name {
        display: none; /* Hide name on very small screens */
    }

    .user-menu {
        gap: 0;
        padding: 4px;
    }

    .pending-deletions-avatar-badge .badge {
        font-size: 0.6rem !important;
        min-width: 12px !important;
        height: 12px !important;
        padding: 0 4px !important;
    }
}

/* Tablet and medium screens */
@media (min-width: 481px) and (max-width: 768px) {
    .user-name {
        max-width: 100px;
        font-size: 0.8125rem;
    }
}
