.Nt8mK3 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
}

.Pt6wL2 {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    min-width: 300px;
    max-width: 450px;
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.Pt6wL2--visible {
    opacity: 1;
    transform: translateX(0);
}

.Pt6wL2--hiding {
    opacity: 0;
    transform: translateX(100%);
}

.St1zO6 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.Ut2aP7 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Vt3bQ8 {
    flex: 1;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 450;
    color: #ffffff;
    line-height: 1.4;
}

.Wt4cR9 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.Wt4cR9:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.Qt9xM4 {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.Rt0yN5 {
    height: 100%;
    width: 100%;
    transform-origin: left;
    animation: toast-progress linear forwards;
}

@keyframes toast-progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

.Pt6wL2--success {
    border-color: #444;
}

.Pt6wL2--success .Ut2aP7 {
    color: #888;
}

.Pt6wL2--success .Rt0yN5 {
    background: #666;
}

.Pt6wL2--error {
    border-color: #444;
}

.Pt6wL2--error .Ut2aP7 {
    color: #888;
}

.Pt6wL2--error .Rt0yN5 {
    background: #666;
}

.Pt6wL2--warning {
    border-color: #444;
}

.Pt6wL2--warning .Ut2aP7 {
    color: #888;
}

.Pt6wL2--warning .Rt0yN5 {
    background: #666;
}

.Pt6wL2--info {
    border-color: #444;
}

.Pt6wL2--info .Ut2aP7 {
    color: #888;
}

.Pt6wL2--info .Rt0yN5 {
    background: #666;
}

@media (max-width: 768px) {
    .Nt8mK3 {
        bottom: 16px;
        right: 16px;
    }

    .Pt6wL2 {
        min-width: 260px;
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .Nt8mK3 {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .Pt6wL2 {
        min-width: auto;
        max-width: none;
    }

    .Vt3bQ8 {
        font-size: 13px;
    }

    .St1zO6 {
        padding: 12px 14px;
        gap: 10px;
    }
}