/* 공용 스타일 및 토스트 알림 */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    --sky-blue: #87CEEB;
    --deep-sky-blue: #00BFFF;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-main: #334155;
}

body {
    font-family: 'Pretendard', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    transition: all 0.3s ease;
}

/* EveryTripLog 전용 카드 (통통 튀는 호버 효과 완벽 제거) */
.etl-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    /* 호버 시 부드러운 그림자 효과만 남기고 움직임(transform)은 뺐습니다. */
    transition: box-shadow 0.3s ease;
}

.etl-card:hover {
    /* 기존 transform 속성(위로 올라가는 효과) 삭제 */
    box-shadow: 0 15px 35px rgba(135, 206, 235, 0.15);
    /* 그림자만 살짝 진해지게 변경 */
}

/* 통통 튀는 버튼 (얘는 유지하시려면 두고, 빼려면 hover 속성에서 transform 삭제) */
.btn-bouncy {
    background-color: var(--white);
    color: var(--sky-blue);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    display: inline-block;
}

.btn-bouncy:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color: var(--sky-blue);
}

/* 토스트 알림 */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
}

.custom-toast {
    background: #FFFFFF;
    border-left: 6px solid var(--sky-blue);
    padding: 16px 24px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 16px;
    transform: translateX(150%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-toast.show {
    transform: translateX(0);
}

/* 기본 레이아웃 제어 */
.main-layout {
    min-height: 800px;
    padding: 48px 0;
}

/* static-card (더 이상 안 쓰지만 혹시 몰라서 잔재만 둠) */
.static-card {
    transition: none !important;
}

.static-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}
