.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
}

.toast-message {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    backdrop-filter: blur(8px);
    animation: toast-in-out 2s ease;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-error {
    background: rgba(220, 38, 38, 0.9);
    color: white;
}

.toast-icon {
    width: 16px;
    height: 16px;
}

@keyframes toast-in-out {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    15% {
        transform: translateY(0);
        opacity: 1;
    }
    85% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
} 