
/* --- STYLES FOR DELETED USERS (ARCHIVE FILTER) --- */

.user-card.deleted {
    background-color: #f2f2f7;
    border: 1px dashed #c7c7cc;
}
.user-card.deleted .user-card-photo {
    filter: grayscale(1);
    opacity: 0.5;
}
.user-card.deleted .user-name, .user-card.deleted .user-login {
    color: #8a8a8e;
}
.deleted-sticker {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff3b30;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
}
.deleted-date {
    font-size: 0.8rem;
    color: #8a8a8e;
    margin-top: 4px;
}

.deleted-timer-container {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 59, 48, 0.1); /* Light red */
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #c62828;
}
.timer-label {
    font-size: 0.9rem;
    font-weight: 500;
}
.timer-countdown {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: monospace;
    background-color: rgba(255, 59, 48, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.btn-pause { background-color: #ff9500; }
.btn-delete-force { background-color: #d32f2f; }

/* --- Styles for buttons on deleted card --- */

.user-card.deleted .user-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 8px;
    margin-top: 1rem;
    width: 100%;
}

/* Reset styles for buttons in this context */
.user-card.deleted .user-card-actions .btn {
    height: 44px;
    border-radius: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-width: 0; /* Override global min-width to prevent overflow */
    flex: none; /* Reset flex behavior */
}

/* Icon-only buttons (Metadata, Pause) - Square and small */
.user-card.deleted .user-card-actions .btn.icon-only {
    width: 44px;
    flex: 0 0 44px;
}

.user-card.deleted .user-card-actions .btn.icon-only img {
    width: 20px;
    height: 20px;
    margin: 0;
}

/* Delete Button - Takes remaining space */
.user-card.deleted .user-card-actions .btn-delete-force {
    flex: 1 1 auto; /* Grow to fill available space */
    padding: 0 12px;
    gap: 8px;
    overflow: hidden; /* Contain content */
}

.user-card.deleted .user-card-actions .btn-delete-force span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
}

.user-card.deleted .user-card-actions .btn-delete-force img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
