.vplus-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 32px));
}

.vplus-toast {
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 18px 35px rgba(17, 27, 44, 0.2);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-6px);
    animation: vplus-toast-in 160ms ease forwards;
}

.vplus-toast--success { background: #1c9f5a; }
.vplus-toast--error { background: #cc3d3d; }
.vplus-toast--warning { background: #cc8a11; }
.vplus-toast--info { background: #245fce; }

@keyframes vplus-toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .vplus-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }
}