.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);
    }
}
