body {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
}

.card-stat {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
  min-height: 8.5rem;
}

.card-stat-label {
  color: rgb(100 116 139);
  font-size: 0.875rem;
  font-weight: 600;
}

.card-stat-value {
  margin-top: 0.75rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: rgb(15 23 42);
}

.card-stat-desc {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgb(148 163 184);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.2s ease;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-link-active {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgb(239 246 255);
  color: rgb(30 64 175);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgb(226 232 240);
  background: white;
  padding: 0.75rem 0.95rem;
  font-size: 0.875rem;
  color: rgb(51 65 85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgb(47 107 255);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
}

.form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(51 65 85);
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgb(226 232 240);
  background: white;
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(71 85 105);
}

.filter-pill-active {
  border-color: rgba(47, 107, 255, 0.2);
  background: rgba(47, 107, 255, 0.08);
  color: rgb(31 90 224);
}
