/* 기본 폰트 */
body { font-family: 'Noto Sans KR', 'Arial', sans-serif; }

/* ── 달력 셀 ───────────────────────────────── */
.cal-cell {
  min-height: 60px;
  padding: 4px;
}

.cal-cell.empty {
  border: none !important;
  background: transparent !important;
  cursor: default;
}

/* 조황 슬라이더 라인-클램프 */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 달력 날짜 호버 효과 */
.cal-cell:not(.empty):hover {
  transform: scale(1.03);
}

/* 스크롤바 스타일 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
::-webkit-scrollbar-thumb { background: #c5c5c5; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a0a0a0; }
