.iq-toast {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 50%;
    transform: translate(50%, 50%);
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(22, 22, 24, 0.82);
    color: white;
    font-size: 12px;
    gap: 5px;
    z-index: 9999;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0;
    width: 100%;
    max-width: 300px;
}

.iq-toast--visible {
    opacity: 1;
}

.iq-toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
}

.iq-toast__icon--success {
    background: rgba(48, 209, 88, 0.2);
    color: #30d158;
}

.iq-toast__icon--error {
    background: rgba(255, 69, 58, 0.2);
    color: #ff453a;
}

.iq-toast__icon--info {
    background: rgba(10, 132, 255, 0.2);
    color: #0a84ff;
}