/* 공통 입력 스타일 */
.input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
}
.input:focus { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  background: white;
  outline: none;
}
.select:focus { border-color: #16a34a; }
.label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.25rem; }
.btn-primary {
  background: #16a34a; color: white; font-weight: 700;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem; transition: background 0.15s; cursor: pointer;
  display: inline-flex; align-items: center;
}
.btn-primary:hover { background: #15803d; }
.btn-secondary {
  background: #f3f4f6; color: #374151; font-weight: 600;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem; transition: background 0.15s; cursor: pointer;
  display: inline-flex; align-items: center;
}
.btn-secondary:hover { background: #e5e7eb; }
/* 뱃지 */
.badge { display: inline-flex; align-items: center; padding: 0.125rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-orange { background: #fed7aa; color: #c2410c; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-gray { background: #f3f4f6; color: #6b7280; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }
/* 인쇄 */
@media print {
  .print\\:hidden { display: none !important; }
  aside { display: none !important; }
  body { background: white; }
}
