/**
 * Toast提示框样式
 * v1.0.0
 */

.toast-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    word-break: break-word;
}

.toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-success {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.toast-error {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.toast-info {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}
