.toast {
    position: fixed;
    top: 105px;
    right: 60px;
    background-color: #222222;
    border: 1px solid #333333;
    border-left: 4px solid #ff6b47;
    padding: 14px 20px;
    border-radius: 10px;
    color: #f0f0f0;
    font-size: .95rem;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: all .35s ease;
}

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

@media (max-width: 768px) {
    .toast {
        right: 24px;
        top: 90px;
        max-width: 280px;
        font-size: .9rem;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .toast {
        right: 16px;
        left: 16px;
        top: 85px;
        max-width: none;
        font-size: .85rem;
        padding: 12px 14px;
    }
}