/* 青年職涯系統 - 自訂樣式 */

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', 'Microsoft JhengHei', sans-serif;
}

.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* 對話氣泡 */
#chat-box {
  scroll-behavior: smooth;
}

/* 進度條動畫 */
.progress-bar {
  transition: width 0.6s ease;
}

/* 卡片懸停效果 */
.card:hover {
  transition: box-shadow 0.2s ease;
}

a .card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px);
  transition: all 0.2s ease;
}
