.feedback-banner {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: left;
}

.feedback-banner.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: #10b981;
}

@media (max-width: 720px) {
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        transform: translateY(100px);
        border-radius: 18px;
        justify-content: center;
        text-align: center;
    }

    .toast.show {
        transform: translateY(0);
    }
}

.confirm-dialog {
    border: none;
    border-radius: 14px;
    padding: 1.8rem;
    max-width: 380px;
    width: calc(100% - 2rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    background: var(--surface, #fff);
    color: var(--text, #1a1a2e);
    margin: auto;
}

.confirm-dialog::backdrop {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.confirm-dialog #confirm-dialog-message {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.confirm-dialog-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.confirm-dialog-cancel,
.confirm-dialog-ok {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s;
    min-height: 38px;
}

.confirm-dialog-cancel {
    background: var(--border, #e2e8f0);
    color: var(--text, #1a1a2e);
}

.confirm-dialog-ok {
    background: #e53e3e;
    color: #fff;
}

.confirm-dialog-cancel:hover { opacity: 0.75; }
.confirm-dialog-ok:hover { opacity: 0.85; }
