/* Toast提示样式 */
.toast-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: white;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    min-width: 280px;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.toast-error .toast-icon {
    background: #FFF3F2;
    color: #FF3B30;
}

.toast-success .toast-icon {
    background: #F0FFF4;
    color: #34C759;
}

.toast-info .toast-icon {
    background: #F0F9FF;
    color: #007AFF;
}

.toast-text {
    color: #1d1d1f;
    font-size: 15px;
    line-height: 1.4;
}

.toast-error {
    border-left: 4px solid #FF3B30;
}

.toast-success {
    border-left: 4px solid #34C759;
}

.toast-info {
    border-left: 4px solid #007AFF;
}
