#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #2d2928;
    color: white;
    padding: 14px 18px;
    margin-top: 10px;
    border-radius: 10px;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-family: 'arboria', sans-serif;
    font-size: 1.5rem;

    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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