.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    max-width: 350px;
    word-wrap: break-word;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

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

.toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

.toast.success {
    border-left: 4px solid #00ff00;
}

.toast.error {
    border-left: 4px solid #ff0000;
}

.toast.warning {
    border-left: 4px solid #ffaa00;
}

.toast.info {
    border-left: 4px solid #0088ff;
} 