@charset "UTF-8";

/* [구나리야용 날씨 위젯 스타일] */
.n-weather-widget .na-card { 
    position: relative;
    border: 1px solid #dee2e6; /* 테두리 색상 지정 */
    border-radius: 8px; 
    background: #fff; 
    overflow: hidden;
}

/* 상단 포인트 라인 제거 (캘린더와 동일하게) */
.n-weather-widget .na-card::before {
    display: none !important;
}

/* 헤더 영역 배경 및 하단 선 */
.n-weather-widget .na-sec-head { 
    background: #f8f9fa; 
    border-bottom: 1px solid #dee2e6 !important;
}

/* 지역명 및 설정 아이콘 */
.n-weather-widget .location-text {
    color: #6c757d;
}

/* 메인 온도 및 아이콘 */
.n-weather-widget .weather-main-icon { font-size: 2.5rem; }
.n-weather-widget .weather-temp-text { font-size: 1.8rem; font-weight: 700; color: #212529; }
.n-weather-widget .weather-desc { font-size: 0.9rem; color: #6c757d; }

/* 시간대별 예보 아이템 */
.n-weather-widget .hourly-item { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    z-index: 2; 
}

/* 실시간 꺾은선 그래프 (SVG) */
.n-weather-widget .hourly-graph-svg {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
    color: #007bff; /* 그래프 선 색상 */
}

/* 미세먼지 정보 텍스트 스타일 */
.n-weather-widget .weather-finedust { 
    font-size: 0.75rem; 
    color: #6c757d; 
    white-space: nowrap; 
}

/* 다크모드 보정 */
body.dark-mode .n-weather-widget .weather-finedust {
    color: #adb5bd;
}

/* [다크모드 대응] */
body.dark-mode .n-weather-widget .na-card { 
    background: #2b2b2b; 
    border-color: #444; 
}
body.dark-mode .n-weather-widget .na-sec-head { 
    background: #343a40; 
    border-color: #444 !important; 
}
body.dark-mode .n-weather-widget .weather-temp-text { color: #eee; }
body.dark-mode .n-weather-widget .location-text,
body.dark-mode .n-weather-widget .weather-desc { color: #adb5bd !important; }