.toast-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    pointer-events: none;
}

.toast-content {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    max-width: 80%;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    min-width: 120px;
    justify-content: center;
}

.toast-content.success {
    background: rgba(82, 196, 26, 0.95);
}

.toast-content.error {
    background: rgba(255, 77, 79, 0.95);
}

.toast-icon {
    margin-right: 10px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s, transform 0.3s;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
    transform: translateY(20px);
}
