/* ========== Sales Manager Custom Styles ========== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo",
               "Malgun Gothic", "맑은 고딕", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Navbar 활성 메뉴 강조 */
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #ffc107;
}

/* ========== 타임라인 ========== */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dee2e6;
}
.timeline-item {
  position: relative;
  padding: 0 0 24px 0;
}
.timeline-marker {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #adb5bd;
}
.timeline-content {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 14px 16px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

/* 카드 호버 살짝 띄우기 */
.card.shadow-sm {
  transition: box-shadow 0.15s ease-in-out;
}

/* 테이블 헤더 가독성 */
.table > thead.table-light > tr > th {
  font-weight: 600;
  font-size: 0.875rem;
  color: #495057;
  white-space: nowrap;
}

/* dl 정의 리스트 간격 */
dl.row dt, dl.row dd {
  margin-bottom: 0.5rem;
}
