.admin-toast-stack {
    position: fixed;
    top: 86px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: grid;
    gap: 10px;
    width: min(92vw, 420px);
    pointer-events: none;
}

.admin-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
    border: 1px solid #e5e7eb;
    color: #111827;
    font: 700 14px/1.5 "Cairo", Tahoma, Arial, sans-serif;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: auto;
}

.admin-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.admin-toast.hide {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
}

.admin-toast__icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 14px;
}

.admin-toast--success .admin-toast__icon {
    background: #ecfdf3;
    color: #047857;
}

.admin-toast--error .admin-toast__icon {
    background: #fff1f2;
    color: #be123c;
}

.admin-toast--warning .admin-toast__icon {
    background: #fff7ed;
    color: #c2410c;
}

.admin-toast--info .admin-toast__icon {
    background: #eff6ff;
    color: #1d4ed8;
}

.admin-inline-alert {
    display: none;
    margin-bottom: 16px;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid transparent;
    font: 700 14px/1.7 "Cairo", Tahoma, Arial, sans-serif;
}

.admin-inline-alert.show {
    display: block;
}

.admin-inline-alert.error {
    background: #fff1f2;
    color: #be123c;
    border-color: #fecdd3;
}

.admin-inline-alert.success {
    background: #ecfdf3;
    color: #047857;
    border-color: #a7f3d0;
}

.admin-inline-alert.info {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}
