/* moderator.css */
/* Styles for the moderation overlays, passcode panels, action triggers, and toast alert notifications */

.moderator-panel-card {
    background-color: rgba(5, 5, 8, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.1);
}

.moderator-input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.moderator-input:focus {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.4);
}

.btn-purge-premium {
    background-color: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-purge-premium:hover {
    background-color: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Elegant system alert notification toasts */
.toast-alert-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid;
    animation: bounceToast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-success {
    background-color: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.toast-error {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

@keyframes bounceToast {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    70% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
