/* HPay Admin WebUI — 自訂樣式（Bootstrap 5 為主體） */

body {
  background-color: #f8f9fa;
}

/* Sidebar */
#sidebar {
  min-height: calc(100vh - 98px);
  position: sticky;
  top: 98px;
  height: calc(100vh - 98px);
  overflow-y: auto;
}

#sidebar .nav-link {
  color: #495057;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s;
}

#sidebar .nav-link:hover {
  background-color: #e9ecef;
  color: #212529;
}

#sidebar .nav-link.active {
  background-color: #0d6efd20;
  color: #0d6efd;
}

/* Cards */
.card {
  border: 1px solid #dee2e6;
}

/* Table */
.table th {
  font-weight: 600;
  font-size: 0.85rem;
}

/* 主內容區 */
main {
  min-height: calc(100vh - 56px);
}

/* 金鑰欄位 monospace */
.font-monospace {
  font-family: 'Courier New', Courier, monospace;
}

/* mode badge 大小調整 */
.badge.fs-6 {
  font-size: 0.9rem !important;
}

/* Language switcher (navbar) */
.lang-switch-admin a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  transition: color 0.15s, background-color 0.15s;
}

.lang-switch-admin a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch-admin a.active {
  color: #fff;
  font-weight: 700;
}
