/* Francisco Diary Hub - Common Toast Notification */
#fd-toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* 클릭 통과 */
}

.fd-toast {
    background-color: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px; /* 캡슐 모양 */
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
    pointer-events: auto; /* 토스트 자체는 클릭 가능 (필요시) */
}

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

.fd-toast.type-success { border-left: 4px solid #4CAF50; }
.fd-toast.type-error { border-left: 4px solid #F44336; }
.fd-toast.type-info { border-left: 4px solid #2196F3; }

/* 모바일 대응 */
@media (max-width: 600px) {
    #fd-toast-container {
        bottom: 20px;
        width: 90%;
    }
    .fd-toast {
        width: 100%;
        font-size: 13px;
    }
}
