#custom-toast-container {
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-toast {
    padding: 12px 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
}

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

/* 三种状态颜色 */
.custom-toast.success {
    background-color: #28a745; /* 成功绿 */
}
.custom-toast.error {
    background-color: #dc3545; /* 错误红 */
}
.custom-toast.warning {
    background-color: #ffc107; /* 警告黄 */
    color: #333; /* 黄色文字换深色 */
}