/* 송탄중앙침례교회 목장보고 - 공통 스타일 */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
               "Pretendard", "Noto Sans KR", sans-serif;
  background: #f5f7fb; color: #222;
  -webkit-text-size-adjust: 100%;
}
a { color: #2962ff; text-decoration: none; }

/* 상단 바 */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: #1a3b8a; color: #fff;
  position: sticky; top: 0; z-index: 5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.topbar .title { font-size: 17px; font-weight: 600; }
.topbar .who   { font-size: 13px; opacity: 0.9; }
.topbar button {
  background: rgba(255,255,255,0.18); border: 0; color: #fff;
  padding: 6px 12px; border-radius: 6px; font-size: 13px;
}

/* 컨테이너 */
.wrap { max-width: 720px; margin: 0 auto; padding: 16px; }
.card {
  background: #fff; border-radius: 12px; padding: 16px;
  margin-bottom: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.card h2 { margin: 0 0 12px; font-size: 16px; }

/* 폼 */
label { display: block; font-size: 13px; color: #555; margin: 10px 0 4px; }
input, select, textarea {
  width: 100%; padding: 12px; border: 1px solid #d0d7e2; border-radius: 8px;
  font-size: 16px; background: #fff; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: #2962ff; }
textarea { min-height: 80px; resize: vertical; }

.row { display: flex; gap: 8px; }
.row > * { flex: 1; }

button.primary {
  width: 100%; background: #1a3b8a; color: #fff;
  border: 0; padding: 14px; border-radius: 10px;
  font-size: 16px; font-weight: 600; cursor: pointer;
}
button.primary:disabled { background: #888; }
button.secondary {
  background: #e7ecf6; color: #1a3b8a; border: 0;
  padding: 8px 12px; border-radius: 8px; cursor: pointer;
}
button.danger {
  background: #ffe6e6; color: #c62828; border: 0;
  padding: 6px 10px; border-radius: 6px; cursor: pointer;
}

/* 메시지 */
.msg { padding: 10px 12px; border-radius: 8px; margin: 10px 0; font-size: 14px; }
.msg.ok  { background: #e6f7ec; color: #146c43; }
.msg.err { background: #fdecea; color: #b3261e; }

/* 보고 목록(카드형) */
.report-item {
  border: 1px solid #e3e8f0; border-radius: 10px;
  padding: 12px; margin-bottom: 10px; background: #fafbff;
}
.report-item .head {
  display: flex; justify-content: space-between; font-size: 13px; color: #555;
}
.report-item .body { margin-top: 6px; font-size: 14px; line-height: 1.5; }

/* 관리자 표 */
.tbl-wrap { overflow-x: auto; }
table.adm {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
table.adm th, table.adm td {
  padding: 8px 6px; border-bottom: 1px solid #eaeef5; text-align: center;
}
table.adm th { background: #eef2fb; font-weight: 600; color: #1a3b8a; }
table.adm tr:hover td { background: #f8faff; }

/* 모바일 우선 살짝 패딩 */
@media (max-width: 480px) {
  .wrap { padding: 10px; }
  .card { padding: 12px; }
  .topbar { padding: 12px; }
}
