#xfactorToastContainer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.xfactor-toast {
    padding: 10px 18px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 16px;
    color: white;
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.xfactor-toast-success {
    background-color: #28a745;
}

.xfactor-toast-error {
    background-color: #e53935;
}

.xfactor-toast-warn {
    background: orange;
    color: white;
}