/* Toast Container */
.gs-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: auto;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toast Box */
.gs-toast {
    min-width: 260px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    animation: toast-slide-in .35s ease forwards;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Types */
.gs-toast-success { background: #16a34a; }
.gs-toast-error   { background: #dc2626; }
.gs-toast-warning { background: #f59e0b; }
.gs-toast-info    { background: #2563eb; }