/* toast.css */
#customToast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(50, 50, 50, 0.9);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, top 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#customToast.show {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

/* 기존 코드 아래에 이 부분만 추가하세요 */
#customToast.warning {
    background-color: rgba(210, 60, 60, 0.95); /* 살짝 붉은색 */
    box-shadow: 0 4px 12px rgba(210, 60, 60, 0.2); /* 붉은빛 그림자 */
}