/**
 * YMY Theme - 全局顶部下拉提示（Toast）
 *
 * @package YMY
 * @since 1.0.0
 */

.ymy-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 90vw;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.ymy-toast.show {
    transform: translateX(-50%) translateY(0);
}

.ymy-toast.success {
    background: #52c41a;
}

.ymy-toast.error {
    background: #ff4d4f;
}

.ymy-toast.info {
    background: #667eea;
}
