/* Ban Notice Card - shown on banned user profiles and posts */
.banned-profile-notice,
.banned-post-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 24px 16px;
}

.ban-notice-card {
    max-width: 480px;
    width: 100%;
    text-align: center;
    background: var(--card-bg, #fff);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .ban-notice-card {
    background: #1a1a2e;
    border-color: rgba(239, 68, 68, 0.3);
}

.ban-notice-card .ban-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
}

.ban-notice-card h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ef4444;
    margin: 0 0 12px 0;
}

.ban-notice-card .ban-reason-label {
    font-size: 14px;
    color: var(--text-secondary, #666);
    margin: 8px 0 4px 0;
}

.ban-notice-card .ban-reason-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #111);
    background: rgba(239, 68, 68, 0.06);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 8px 0;
    line-height: 1.5;
}

[data-theme="dark"] .ban-notice-card .ban-reason-text {
    color: #f1f1f1;
    background: rgba(239, 68, 68, 0.12);
}

.ban-notice-card .ban-date {
    font-size: 13px;
    color: var(--text-secondary, #999);
    margin: 8px 0;
}

.ban-notice-card .ban-footer {
    font-size: 13px;
    color: var(--text-secondary, #999);
    margin: 16px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .ban-notice-card .ban-footer {
    border-top-color: rgba(255, 255, 255, 0.06);
}
