/*
* [모듈명]: 상단 토스트 알림 스타일
* [파일명]: toast.css
* [역할]: 사용자 흐름을 방해하지 않는 상단 팝업 알림 스타일 정의
*/

#toast-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: env(safe-area-inset-top, 20px);
    pointer-events: none;
}

.toast {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    pointer-events: auto;
    border: 1px solid #333;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: #000;
    border-color: #ff3b30;
    color: #ff3b30;
}
