#flo-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flo-toast {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 260px;
    max-width: 320px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: black;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    opacity: 0;
    transform: translateY(40px);
    animation: flo-toast-in .3s ease forwards;
}

.flo-toast-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
}

.flo-toast-close:hover {
    opacity: 1;
}

.flo-toast-text {
    display: block;
}

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

.flo-toast-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.flo-toast-error {
    background: #fef2f2;
    color: #7f1d1d;
    border: 1px solid #fecaca;
}

.flo-toast-warning {
    background: #fffbeb;
    color: #78350f;
    border: 1px solid #fde68a;
}

.flo-toast-info {
    background: #eff6ff;
    color: #1e3a8a;
    border: 1px solid #bfdbfe;
}