.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(30, 40, 70, 0.95);
    border: 1px solid rgba(200, 180, 140, 0.4);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Pretendard', sans-serif;
    /* [폰트-토스트] 기본 14px */
    font-size: clamp(12px, calc(14 / 640 * 100vw), 14px);
    z-index: 100000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* .modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
} */