/* =========================
            공통
========================= */

body {
  background: #ffffff;
  margin: 0;
  font-family: "Paperlogy-Regular", "Paperlogy", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.2s ease;
}

/* =========================================================
   스티키 푸터 (layout/default 사용 페이지)
   - body를 flex 컨테이너로 두고, 본문 영역(.layout-main)에 flex:1을 주어
     콘텐츠가 짧을 때도 푸터가 뷰포트 하단에 고정되도록 함
   ========================================================= */
body.layout-default {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.layout-default .layout-main {
  flex: 1;
}

/* =========================================================
   Admin Font Override (ExtJS 테마 우선순위 대응)
   - 문제: ExtJS Material 테마가 body에 Roboto를 적용해 Paperlogy가 깨질 수 있음
   - 해결: 관리자 페이지(body.admin-page)는 Paperlogy를 강제하고,
           ExtJS 컴포넌트는 상속 폰트 사용(아이콘만 예외)
   ========================================================= */
body.admin-page {
  font-family: "Paperlogy-Regular", "Paperlogy", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body.admin-page .x-component,
body.admin-page .x-grid,
body.admin-page .x-grid .x-grid-row,
body.admin-page .x-grid .x-grid-header,
body.admin-page .x-list {
  font-family: inherit !important;
}

/* (중요) ExtJS 아이콘 폰트는 Material Icons 유지 */
body.admin-page .x-font-icon {
  font-family: "Material Icons", sans-serif !important;
}

/* =========================================================
          Typography (font-family 통일)
   - 목적: 프로젝트 전체 폰트를 style.css의 Paperlogy-Regular 기준으로 통일합니다.
   - 배경: layout.css에서 일부 요소(h1~h6/button/input/textarea 등)에 font-family를 직접 지정하면
           페이지/상태(active, focus 등)에 따라 폰트가 달라 보일 수 있습니다.
   - 처리: 주요 타이포 요소는 body의 font-family를 상속하도록 고정합니다.
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea,
.gnb a {
  font-family: inherit;
}

main {
  text-align: center;
  padding: 100px 20px;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 공통 container */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
      Header / Logo
========================= */
header {
  padding: 16px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.logo-wrap {
  margin-right: auto;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: #000;
}

.logo-sub {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 400;
}

/* =========================
           GNB 
========================= */
.gnb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  font-size: 18px;
  font-weight: 500;
}

.gnb a {
  text-decoration: none;
  color: #353535;
  position: relative;
  padding-bottom: 4px;
  line-height: 4;
}

.gnb a.active {
  color: #0053c6;
  font-weight: 600;
}

.gnb a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #0053c6;
}

/* hover underline */
.gnb a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #80b1f7;
  opacity: 0.5;
}

/* =========================
        Main Hero
========================= */
.hero-title {
  font-size: 60px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-sub {
  font-size: 18px;
  color: #505050;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 60px;
}

/* =========================
        Card Grid
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 30px 40px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  justify-content: start;
}

/* 카드 */
.cmi_box {
  display: block;
  position: relative;
  overflow: visible;
  width: 200px;
  height: 180px;
  padding: 30px 30px;
  border-radius: 30px;
  overflow: hidden;
  color: #333;
  text-decoration: none;
  text-align: left;
  font-weight: 400;
}

/* 배경색 */
.bg-blue {
  background: #dff0ff;
}
.bg-yellow {
  background: #fff4cc;
}
.bg-green {
  background: #dff8e7;
}
.bg-peach {
  background: #ffe9e9;
}
.bg-gray {
  background: #eff0f2;
}
.bg-pink {
  background: #ffdce5;
}
.bg-mint {
  background: #e3fcff;
}
.bg-purple {
  background: #efe3ff;
}

/* 텍스트 */
.cmi_box strong {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
}

.cmi_box p {
  margin: 3px 0 10px;
  font-size: 16px;
  font-weight: 400;
}

/* 카드 아이콘 */
.card-icon {
  position: absolute;
  left: 24px;
  bottom: 22px;
}

.card-icon img {
  object-fit: contain;
  display: block;
  animation: float-icon 2.2s ease-in-out infinite;
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* 카드별 타이틀 컬러 */
.card-grid .cmi_box:nth-child(1) strong {
  color: #0b409e;
}
.card-grid .cmi_box:nth-child(2) strong {
  color: #f38314;
}
.card-grid .cmi_box:nth-child(3) strong {
  color: #32745d;
}
.card-grid .cmi_box:nth-child(4) strong {
  color: #a25513;
}
.card-grid .cmi_box:nth-child(5) strong {
  color: #4a5a6b;
}
.card-grid .cmi_box:nth-child(6) strong {
  color: #c02e2e;
}
.card-grid .cmi_box:nth-child(7) strong {
  color: #286e77;
}
.card-grid .cmi_box:nth-child(8) strong {
  color: #6f4c83;
}

/* 카드 오른쪽 코너 */
.c_more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 2rem 0 0 0;
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 6px;
  z-index: 3;
}

.c_more:before {
  content: "";
  position: absolute;
  left: -3.5rem;
  bottom: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  box-shadow: 1.8rem 1.8rem 0 0 #ffffff;
}

.c_more:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  box-shadow: 1.8rem 1.8rem 0 0 #ffffff;
}

/* 코너 화살표 버튼 */
.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.arrow-btn span {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.arrow-btn:hover {
  background: #2a5fbd;
}

/* =========================
         버튼 (공통)
========================= */
.submit-btn {
  margin-top: 70px;
  padding: 18px 45px;
  border: none;
  background: #dbf0ff;
  color: #0b409e;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: #2a5fbd;
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(11, 64, 158, 0.25);
  transform: translateY(-2px);
}

/* =========================
          이용안내
========================= */
body.page-guide main {
  text-align: left;
}

.page-title {
  text-align: center;
  margin-bottom: 80px;
}

.page-title h1 {
  font-size: 50px;
  margin: 0;
  font-weight: 800;
}

.section {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-bullet {
  width: 18px;
  height: 18px;
  display: block;
  background: url("../img/icon_bullet.png") no-repeat center/contain;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #2a5fbd;
}

.section-body {
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
}

.section-body p {
  margin: 0 0 4px;
}
.section-body p + p {
  margin-top: 6px;
}

.sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
}

/* =========================
       Process Image
========================= */
.process-flow {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
}

.process-img {
  display: block;
  height: auto;
}
.process-img.pc-only {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.process-img.mobile-only {
  display: none;
}

/* =========================
        제보 작성 (Form)
========================= */
.report-form {
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px 28px;
  align-items: start;
  margin-bottom: 22px;
}

.form-row > label {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.req-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #35b8ff;
  display: inline-block;
}

select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 16px;
  outline: none;
  transition: 0.15s;
  font-family: inherit;
}

textarea {
  min-height: 240px;
  resize: vertical;
  padding: 16px;
}

input[type="password"] {
  height: 50px;
  line-height: 52px;
  padding: 0 16px;
  min-width: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  height: 50px;
  padding: 0 16px;
}

select:focus,
textarea:focus,
input:focus {
  border-color: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #fff;
}

.select-short {
  width: 360px;
  max-width: 100%;
  height: 52px;
  padding: 0 54px 0 16px;
  font-size: 16px;
  border: 1px solid #e1e4ea;
  border-radius: 12px;
  background-color: #fff;
  background-image: url("../img/icon_select_arrow.png");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 24px 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* =========================
          첨부파일
========================= */
.attach-top {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 50px 18px;
  text-align: center;
  border: 1px solid #eef0f3;
}

.attach-top-text {
  margin: 0 0 18px;
  font-size: 16px;
  color: #555;
}

.attach-btn {
  border: 0;
  background: #2f6bff;
  color: #fff;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.attach-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.attach-total{
  margin: 0;
  font-weight: 500; /* 버튼(800)과 대비 */
  color: #667085;
}

/* 업로드 안내 문구는 좌측 정렬 */
.upload-help {
  text-align: left;
}

.attach-bar .count strong {
  color: #2f6bff;
}

.attach-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #e1e4ea;
  border-radius: 5px;
  cursor: pointer;
}

.attach-clear .icon-trash {
  width: 14px;
  height: 14px;
  display: block;
}

.attach-clear:hover {
  background: #f5f7fa;
  border-color: #cfd6e3;
}

.attach-list {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}

.attach-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #e1e4ea;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
}

.attach-name {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.attach-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.attach-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
}

.attach-dot.checked {
  border-color: #2f6bff;
  background: #2f6bff;
  position: relative;
}

.attach-dot.checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.attach-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: #eef0f3;
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
}

.attach-download:hover {
  background: #dadada;
}

.attach-download .download-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.attach-view {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: #000000;
  cursor: pointer;
}

.attach-view:hover {
  text-decoration: underline;
}

/* 익명: 이메일 인증  */
.anon-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anon-form .email-auth {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.anon-form .email-code {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.anon-form + .pw-wrap,
.anon-form .pw-wrap {
  margin-top: 10px;
}

.method-wrap .pw-wrap {
  margin-top: 18px;
}

.anon-form .email-code input {
  flex: 1;
  min-width: 0;
  height: 52px;
  box-sizing: border-box;
}

.anon-form .email-code-btn {
  flex: 0 0 105px;
  min-width: 105px;
  height: 52px;
  padding: 0 14px;
  font-size: 15px;
  line-height: 1;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-sizing: border-box;
}

/*  실명: 이메일 인증 */
.email-auth {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.email-fields {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns:
    1.6fr
    26px
    1fr
    minmax(110px, 140px);
  gap: 10px;
  align-items: stretch;
}

.email-fields input,
.email-fields select {
  width: 100%;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  min-width: 0;
  /*background: #f9fafb;*/
}

.email-fields input:focus,
.email-fields select:focus {
  border-color: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #fff;
}

.email-fields .at {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f4f4f;
  font-weight: 500;
}

.email-auth-btn {
  flex: 0 0 auto;
  height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: #2f6bff;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}

.email-code {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  align-items: stretch;
}

.email-code input {
  width: 100%;
  height: 52px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}

.email-code-btn {
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: #6b6f76;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}

/* 이메일 도메인 select */
.email-domain-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9fafb;
  background-image: url("../img/icon_arrow_down.png");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  padding-right: 42px;
}

@media (max-width: 768px) {
  .email-auth {
    flex-direction: column;
  }

  .email-fields {
    grid-template-columns: 1fr 22px 1fr;
    gap: 10px;
  }

  .email-fields select.email-domain-select {
    grid-column: 1 / -1;
  }

  .email-auth-btn {
    width: 100%;
    border-radius: 12px;
  }

  .email-code {
    grid-template-columns: 1fr 96px;
  }
}

@media (max-width: 480px) {
  .email-fields {
    /*grid-template-columns: 1fr 18px 1.6fr;*/
    gap: 10px;
  }

  .email-fields select.email-domain-select {
    grid-column: 1 / -1;
  }

  .email-fields .at {
    font-size: 14px;
  }
}

/* =========================
         제보 방식
========================= */
.method-wrap {
  width: 100%;
}

.radio-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  margin: 0 0 14px;
  padding: 0;
}

.radio-wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.radio-wrap input {
  width: 16px;
  height: 16px;
  accent-color: #2f6bff;
}

.real-form {
  display: grid;
  grid-template-columns: 1fr;
  /*gap: 12px;*/
  margin-bottom: 14px;
}

.phone-auth {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  align-items: stretch;
}

.auth-btn {
  border: 0;
  border-radius: 12px;
  background: #2f6bff;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  height: 52px;
}

.pw-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 50px;
}

/* form-row 내 비밀번호 영역: 행 간격은 form-row margin으로만 처리 */
.form-row .pw-wrap {
  margin-top: 0;
}

/* 제보 폼 내: 비밀번호~약관 동의 구간 간격을 form-row(22px)와 통일 */
.report-fields-after-type .form-row .pw-wrap {
  margin-bottom: 40px;
}

.pw-wrap input[type="password"] {
  background: #f9fafb;
}

.hidden {
  display: none !important;
}

/* =========================
       개인정보 동의
========================= */
.agree-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom:50px;
}

.agree {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.agree summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  background: #f3f4f6;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agree summary::-webkit-details-marker {
  display: none;
}

.chev {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chev-icon {
  width: 25px;
  height: 25px;
  display: block;
  transition: transform 0.2s ease;
}

details[open] .chev-icon {
  transform: rotate(180deg);
}

.agree .agree-body {
  padding: 14px 18px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.agree-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #111;
}

.agree-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2f6bff;
}

.submit-wrap {
  text-align: center;
  margin-top: 22px;
}

/* =========================
       처리결과 조회
========================= */

body.result-page {
  background-color: #fdfdfd;
}

body.result-page .center-wrap {
  display: flex;
  justify-content: center;
}

body.result-page .result-card {
  width: 100%;
  max-width: var(--content-max);
  border: 1px solid #eef1f5;
  border-radius: 10px;
  background: #fff;
  padding: 100px 64px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

body.result-page .result-card h1 {
  margin: 0 0 70px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

body.result-page .result-form {
  width: min(420px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.result-page .result-field label {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  text-align: left;
}

body.result-page .result-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 15px;
  outline: none;
  transition: 0.15s;
  font-family: inherit;
}

body.result-page .result-input:focus {
  border-color: #9dbbff;
  box-shadow: 0 0 0 3px rgba(0, 83, 198, 0.1);
}

body.result-page .result-btn {
  margin: 50px auto 0;
  padding: 18px 45px;
  border: none;
  border-radius: 999px;
  background: #dbf0ff;
  font-size: 18px;
  color: #0b4aa7;
  font-weight: 600;
  cursor: pointer;
}

body.result-page .result-btn:active {
  transform: translateY(1px);
}

body.result-page .result-btn:hover {
  background: #2a5fbd;
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(11, 64, 158, 0.25);
  transform: translateY(-2px);
}

body.result-page .result-helper {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

body.result-page .result-box {
  width: min(520px, 100%);
  margin: 22px auto 0;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: #fafcff;
  padding: 14px 16px;
  display: none;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

body.result-page .result-box strong {
  color: #111;
}

body.result-page .result-form,
body.result-page .result-form * {
  box-sizing: border-box;
}

body.result-page .result-error,
body.result-page .result-input {
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #9aa3b2;
  opacity: 1;
}

body.result-page .result-error {
  width: 100%;
  margin: 0 auto 2px;
  padding: 10px 12px;
  border: 1px solid #ff6b6b;
  background: #ffecec;
  border-radius: 4px;
  display: none;
  align-items: center;
  gap: 8px;
  color: #e64545;
  font-size: 15px;
  font-weight: 500;
}

body.result-page .result-error-ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff6b6b;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 16px;
}

/* =========================
        휴대폰 인증
========================= */

body.phone-auth-page {
  background: #fdfdfd;
}

body.phone-auth-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px 0;
}

body.phone-auth-page .center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

body.phone-auth-page .auth-card {
  width: 100%;
  max-width: var(--content-max);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 80px 40px 60px;
}

body.phone-auth-page .auth-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

body.phone-auth-page .auth-desc {
  text-align: center;
  margin: 20px 0 50px;
  font-size: 16px;
  color: #7a8191;
}

body.phone-auth-page .auth-form {
  max-width: 420px;
  margin: 0 auto;
}

body.phone-auth-page .auth-field {
  margin-bottom: 22px;
}

body.phone-auth-page .auth-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: #222;
}

body.phone-auth-page .auth-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

body.phone-auth-page .auth-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 48px;
  border: 1px solid #e3e6ee;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  outline: none;
}

body.phone-auth-page .auth-input::placeholder {
  color: #b4b9c7;
}

body.phone-auth-page .auth-input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

body.phone-auth-page .auth-btn-inline {
  height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1.5px solid #3b82f6;
  background: #fff;
  color: #3b82f6;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}

body.phone-auth-page .auth-submit {
  display: block;
  margin: 50px auto 0;
  padding: 0 36px;
  height: 44px;
  border-radius: 22px;
  border: none;
  background: #cfe6ff;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Notice Box */
body.phone-auth-page .auth-notice {
  width: 100%;
  max-width: var(--content-max);
  background: #f3f3f3;
  border-radius: 14px;
  padding: 26px 30px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  text-align: left;
}

body.phone-auth-page .auth-notice h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #336dd4;
}

body.phone-auth-page .notice-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  max-width: 520px;
  text-align: left;
}

body.phone-auth-page .notice-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 10px 0;
}

body.phone-auth-page .notice-list .n {
  font-weight: 600;
  color: #313131;
}

body.phone-auth-page .auth-notice strong {
  font-weight: 600;
  color: #111827;
}

body.result-page main,
body.phone-auth-page main {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

body.result-page .result-card,
body.phone-auth-page .auth-card,
body.phone-auth-page .auth-notice {
  margin-left: auto;
  margin-right: auto;
}

/* =========================
      관리자 대시보드  
========================= */

body.admin-page .container {
  max-width: 1200px;
  margin: 0px auto 80px;
}

h1.admain {
  text-align: left;
}

.tab-area {
  position: relative;
  margin-top: 10px;
}

.tab-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: -1px;
  padding-right: 30px;
}

.tab {
  padding: 14px 28px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #ddd;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.tab.active {
  background: #fff;
  color: #0053c6;
  border-bottom: 1px solid #fff;
  box-shadow: none;
}

.table-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 34px 34px 26px;
}

.table-inner {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background: #f5f5f5;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

tbody td {
  padding: 18px 14px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  color: #222;
  vertical-align: middle;
}

tbody tr:last-child td {
  border-bottom: none;
}

#tab-receipt tbody tr:hover {
  background: rgba(49, 117, 243, 0.05);
}

.col-date {
  width: 160px;
}
.col-type {
  width: 150px;
}
.col-title {
  width: auto;
}
.col-writer {
  width: 120px;
}
.col-rel {
  width: 110px;
}
.col-status {
  width: 130px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 10px 6px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #fff;
}
.badge.receipt {
  color: #ff8a00;
  border: 1.5px solid #ff8a00;
}
.badge.done {
  color: #2e7d32;
  border: 1.5px solid #2e7d32;
}
.badge.progress {
  color: #1e88e5;
  border: 1.5px solid #1e88e5;
}
.badge.inactive {
  color: #e64545;
  border: 1.5px solid #e64545;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.stats-card-title {
  text-align: center;
  font-weight: 700;
  margin: 10px 0 30px;
  font-size: 25px;
  color: #222;
}

.stats-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #2c2c2c;
  flex-wrap: wrap;
}

.stats-legend .item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.stats-legend .dot {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-block;
}

.dot-receipt {
  background: #f7b6d8;
}
.dot-progress {
  background: #bcd2ff;
}
.dot-done {
  background: #bff3ea;
}

.stats-chart-wrap {
  border-radius: 6px;
  padding: 10px 10px 6px;
  background: #fff;
}
.stats-chart {
  width: 100%;
  height: 500px;
  display: block;
}

.bar-anim {
  transform-origin: 0px 100%;
  animation: barGrow 700ms cubic-bezier(0.17, 0.67, 0.45, 1) forwards;
  opacity: 0;
}
@keyframes barGrow {
  0% {
    transform: translateY(6px) scaleY(0.02);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}

/* =========================
        관리자 상세 
========================= */
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* [관리자 상세] "목록으로 돌아가기"와 제목 사이 여백 통일 */
  margin: 4px 0 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0053c6;
  text-decoration: none;
}

.back-icon {
  width: 26px;
  height: 20px;
  display: block;
}

.back-text {
  position: relative;
}

.back-link:hover .back-text {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-head.with-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.page-head.with-tabs .tab-area {
  margin-top: 0;
}
.page-head.with-tabs .back-link {
  margin-top: 0;
}

.detail-card {
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  padding: 22px 22px 26px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  padding: 12px 40px 40px;
  border-bottom: 1px solid #eef2f7;
  margin-bottom: 18px;
  text-align: left;
}

.meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.meta-label {
  min-width: 70px;
  color: #6b7280;
  font-weight: 500;
}

.meta-value {
  color: #111;
  font-weight: 600;
}

.blue-box {
  border: 1.5px solid #9dbbff;
  background: #f3f7ff;
  border-radius: 8px;
  padding: 20px 16px 18px 28px;
  margin-top: 14px;
  text-align: left;
}

.box-title {
  font-size: 16px;
  font-weight: 700;
  color: #2b5cff;
  margin: 0 0 30px;
}

.box-body {
  font-size: 14px;
  color: #222;
  line-height: 1.65;
}

div#vTitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

div#vBody {
  margin-bottom: 20px;
}

@media (min-width: 1025px) {
  .box-title {
    font-size: 20px;
  }
  .box-body {
    font-size: 16px;
  }
  div#vTitle {
    font-size: 18px;
  }
}

.attach {
  margin-top: 10px;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #fff;
  color: #000000;
  font-weight: 700;
}

.attach a {
  color: #0053c6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.form-row.detail {
  grid-template-columns: 200px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.form-label {
  font-size: 18px;
  color: #3b3b3b;
  font-weight: 800;
}

#vStatus {
  width: 360px;
  max-width: 100%;
  height: 52px;
  padding: 0 54px 0 16px;
  font-size: 16px;
  border: 1px solid #e1e4ea;
  border-radius: 12px;
  background-color: #fff;
  background-image: url("../img/icon_select_arrow.png");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 24px 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.select,
.textarea {
  width: 100%;
  border: 1px solid #d7dbe3;
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px;
  padding: 10px 12px;
  font-family: inherit;
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.btn-update {
  margin-top: 70px;
  padding: 18px 45px;
  border: none;
  background: #dbf0ff;
  color: #0b409e;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-update:hover {
  background: #2a5fbd;
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(11, 64, 158, 0.25);
  transform: translateY(-2px);
}

/* =========================
          Footer
========================= */
footer {
  margin-top: 80px;
  padding: 20px 20px;
  background: #f5f5f5;
  color: #555;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

.footer-copy {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

/* =========================
        Mobile Menu
========================= */
.mobile-menu-btn {
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-menu-btn span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #111;
  border-radius: 999px;
  display: block;
  transform-origin: center;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.2s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 11px;
}
.mobile-menu-btn span:nth-child(2) {
  top: 19px;
}
.mobile-menu-btn span:nth-child(3) {
  top: 27px;
}

body.menu-open .mobile-menu-btn span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}
body.menu-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
body.menu-open .mobile-menu-btn span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu-btn,
.mobile-dim,
.mobile-menu {
  display: none;
}

.mobile-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 110;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100dvh;
  background: #fff;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 120;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
  will-change: transform;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.mm-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.mm-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  background: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 14px 0 10px;
}

.mobile-nav a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 6px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a.active {
  color: #0053c6;
}
.mobile-nav a:hover {
  background: #f4faff;
}

.admin-toggle--mobile {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-toggle--mobile span {
  font-size: 16px;
  font-weight: 700;
  color: #353535;
}

body.menu-open .mobile-dim {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

/* =========================
        Responsive
========================= */

/* 1100 이하 */
@media (max-width: 1100px) {
  header {
    padding: 14px 18px;
  }
  .header-inner {
    max-width: 100%;
    min-height: 40px;
  }
  .gnb {
    gap: 24px;
    font-size: 15px;
  }
  .container {
    padding: 70px 18px 40px;
  }
}

/* 1024 이하 */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
  }
  .cmi_box {
    width: 100%;
    height: auto;
    min-height: 200px;
    box-sizing: border-box;
  }

  .meta-item {
    font-size: 15px;
  }
  .meta-grid {
    gap: 10px 20px;
    padding: 0px 0px 20px 20px;
  }
  .meta-label {
    min-width: 50px;
  }
  .blue-box {
    padding: 20px;
  }
  .attach,
  .attach a {
    font-size: 14px;
  }
  .form-label {
    font-size: 16px;
  }
  #vStatus {
    width: auto;
    font-size: 14px;
  }
  .select,
  .textarea {
    font-size: 14px;
  }

  body.result-page .result-card {
    padding: 50px 18px 50px;
  }
  body.result-page .result-card h1 {
    font-size: 30px;
    margin: 0 0 44px;
  }
  body.result-page .result-field label {
    font-size: 16px;
  }
  body.result-page .result-btn {
    margin-top: 34px;
    padding: 16px 36px;
    font-size: 16px;
  }
  body.result-page .result-error {
    font-size: 14px;
  }

  body.phone-auth-page .container {
    padding: 70px 40px;
  }
}

@media (max-width: 920px) {
  .table-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px 24px 26px;
  }
  .tab {
    padding: 14px 28px;
    border-radius: 10px 10px 0 0;
    border: 1px solid #ddd;
    background: #f1f1f1;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  thead th {
    background: #f5f5f5;
    padding: 16px 14px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center;
  }

  tbody td {
    padding: 15px 8px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #222;
    vertical-align: middle;
  }

  .col-date {
    width: auto;
  }
  .col-type {
    width: auto;
  }
  .col-title {
    width: auto;
  }
  .col-writer {
    width: auto;
  }
  .col-rel {
    width: auto;
  }
  .col-status {
    width: auto;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 6px 3px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: -0.01em;
    background: #fff;
  }
}

/* 860 이하 */
@media (max-width: 860px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 14px;
  }
  .logo {
    font-size: 22px;
  }
  .logo-sub {
    font-size: 11px;
    display: none;
  }
  .page-title h1 {
    font-size: 38px;
  }
}

/* 768 이하 */
@media (max-width: 768px) {
  .gnb {
    display: none;
  }
  #adminToggle {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }
  .mobile-dim {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }

  main {
    padding: 70px 16px 0px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .card-grid {
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
  }

  .cmi_box {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding: 22px 18px;
    border-radius: 26px;
    box-sizing: border-box;
  }

  .cmi_box strong {
    font-size: 22px;
  }
  .cmi_box p {
    font-size: 16px;
  }

  .card-icon {
    left: 18px;
    bottom: 10px;
  }
  .card-icon img {
    width: 70px;
    height: 70px;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
  }
  .arrow-btn span {
    font-size: 20px;
    font-weight: 300;
  }

  .process-img.pc-only {
    display: block;
  }
  .process-img.mobile-only {
    display: none;
  }

  .section-title {
    font-size: 20px;
  }
  .sub-title {
    font-size: 18px;
  }
  .section-body {
    font-size: 16px;
    padding-left: 0;
  }
  .process-flow {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .form-row > label {
    padding-top: 0;
    font-size: 20px;
  }

  .select-short {
    width: 100%;
  }
  textarea {
    min-height: 180px;
  }

  .attach-top {
    padding: 26px 14px;
    border-radius: 14px;
  }
  .attach-top-text {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .attach-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .attach-clear {
    margin-left: auto;
  }

  .attach-item {
    padding: 14px 14px;
    border-radius: 12px;
  }
  .attach-name {
    font-size: 13px;
  }
  .attach-right {
    gap: 8px;
  }
  .attach-download {
    padding: 6px 10px;
  }
  .attach-view {
    font-size: 12px;
    padding: 6px 2px;
  }

  .radio-wrap {
    flex-wrap: wrap;
    gap: 14px;
  }
  .radio-wrap label {
    font-size: 16px;
  }

  .phone-auth {
    grid-template-columns: 1fr 96px;
  }
  .auth-btn {
    font-size: 16px;
  }

  .pw-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .agree summary {
    padding: 14px 14px;
    font-size: 14px;
  }
  .agree .agree-body {
    padding: 12px 14px;
  }
  .agree-check {
    font-size: 14px;
  }

  .submit-wrap {
    margin-top: 26px;
  }
  .submit-btn {
    max-width: 420px;
    padding: 15px 45px;
    font-size: 16px;
  }

  body.phone-auth-page .auth-card {
    padding: 50px 18px;
  }
  body.phone-auth-page .auth-title {
    font-size: 27px;
  }
  body.phone-auth-page .auth-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }
  body.phone-auth-page .auth-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
  }
  body.phone-auth-page .auth-notice {
    padding: 20px 18px;
    font-size: 14px;
  }
  body.phone-auth-page .auth-input {
    height: 44px;
    border-radius: 10px;
  }

  .btn-update {
    margin-top: 70px;
    padding: 15px 35px;
    border: none;
    background: #dbf0ff;
    color: #0b409e;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
  }
}

/* 560 이하 */
@media (max-width: 560px) {
  .container {
    padding: 80px 12px;
  }

  .page-title {
    margin-bottom: 50px;
  }
  .page-title h1 {
    font-size: 33px;
    font-weight: 700;
    margin: 0;
  }

  .tab-area {
    margin-bottom: 12px;
  }

  .tab-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
  }

  .tab {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #555;
    cursor: pointer;
  }

  .tab.active {
    background: #0053c6;
    border-color: #0053c6;
    color: #fff;
  }

  .table-card {
    padding: 10px;
  }
  .table-inner {
    overflow: visible;
  }

  .table-inner table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
  }

  .table-inner thead {
    display: none;
  }

  .table-inner tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 10px;
    padding: 20px 12px;
    border-bottom: 1px solid #edf0f4;
  }

  .table-inner tbody td {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .table-inner tbody td:nth-child(1) {
    font-size: 13px;
    color: #535455;
  }

  .table-inner tbody td:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: #4e4e4e;
  }

  .table-inner tbody td:nth-child(3) {
    font-size: 17px;
    line-height: 1.3;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .table-inner tbody td:nth-child(4) {
    font-size: 17px;
    color: #0b40a1;
  }

  .table-inner tbody td:nth-child(5) {
    font-size: 14px;
    color: #8a8f98;
    margin-left: 6px;
    position: relative;
  }

  .table-inner tbody td:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 1 / 5;
    align-self: center;
    justify-self: end;
  }

  .badge {
    padding: 12px 12px;
    font-size: 16px;
    border-radius: 999px;
    min-width: 60px;
  }
}

/* 480 이하 */
@media (max-width: 480px) {
  header {
    padding: 12px 14px;
  }
  .logo {
    font-size: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 18px;
  }
  .sub-title {
    font-size: 16px;
  }
  .section-body {
    font-size: 14px;
  }

  .form-row > label {
    font-size: 18px;
  }
  select,
  textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"] {
    font-size: 14px;
  }

  .attach-btn {
    padding: 9px 12px;
    font-size: 12px;
  }
  .phone-auth {
    grid-template-columns: 1fr 88px;
  }

  .back-icon {
    width: 20px;
    height: 15px;
  }
  .back-link {
    font-size: 16px;
  }

  .btn-update {
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    background: #dbf0ff;
    color: #0b409e;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
  }

  .stats-chart-wrap {
    padding: 0;
  }

  .back-text {
    font-size: 14px;
  }
  .tab {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #555;
    cursor: pointer;
  }
  .tab-area {
    margin-bottom: 0;
  }

  .meta-item {
    gap: 5px;
  }

  /* 480 이하에서 모바일 이미지 사용 */
  .process-img.pc-only {
    display: none;
  }
  .process-img.mobile-only {
    display: block;
    width: min(200px, 88vw);
    max-width: 200px;
    margin: 0 auto;
  }

  .detail-card {
    padding-left: 10px;
    padding-right: 10px;
  }
  .stats-chart {
    height: 300px;
  }
  .stats-card-title {
    font-size: 20px;
    margin-top: 20px;
  }
}

:root {
  --content-max: 760px;
  --content-gutter: 24px;
}

body.result-page main,
body.phone-auth-page main {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.result-page .result-card,
body.phone-auth-page .auth-card,
body.phone-auth-page .auth-notice {
  width: min(var(--content-max), calc(100% - (var(--content-gutter) * 2))) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 560px) {
  :root {
    --content-gutter: 20px;
  }
}

/* =========================================================
   Wireframe/Legacy 공통 스타일 이관 (기존 styles.css → style.css)
   - 목적: 와이어프레임 단계에서 사용하던 유틸/모달/그리드/테이블 래퍼를 유지하되,
           파일은 style.css 하나로 통합합니다.
   - 주의: "스케치용 모노스페이스/두꺼운 검은 테두리"는 제거하고,
           디자이너 톤(연한 보더/카드/블루 포인트)으로 정리합니다.
   ========================================================= */

/* ===== Utilities (spacing/align) ===== */
.block {
  display: block;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.fw-bold {
  font-weight: 700;
}
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.hidden {
  display: none !important;
}
.text-small {
  font-size: 16px;
  color: #667085;
  line-height: 1.5;
}

/* ===== Grid helpers (템플릿에서 다수 사용) ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== Table wrapper / legacy table ===== */
.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wf-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.wf-table th,
.wf-table td {
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
  font-size: 15px;
  color: #222;
}
.wf-table th {
  background: #f5f5f5;
  font-weight: 700;
  color: #333;
}

/* =========================
      Card / Box (wf-box)
   - Public(결과/조회) 화면에서도 카드 톤 적용
   - Admin은 .admin-container .wf-box가 별도로 더 구체적으로 오버라이드합니다.
   ========================= */
.wf-box {
  border: 1px solid #eef0f3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  padding: 22px 22px 18px;
}
.wf-box > :first-child {
  margin-top: 0;
}
.wf-box > :last-child {
  margin-bottom: 0;
}

/* =========================
   Result pages (lookup/detail)
   - layout/default 기반 화면에서 main padding이 빠져 상단이 붙는 문제 보완
   ========================= */
.result-main {
  text-align: center;
  padding: 60px 20px;
}
@media (max-width: 768px) {
  .result-main {
    padding: 44px 16px;
  }
}

/* page-title 간격이 큰 페이지(가이드/제보작성)와 다르게, 결과 화면은 컴팩트하게 */
.page-title--compact {
  margin-bottom: 40px;
}
.page-title--compact h1 {
  font-size: 40px;
}
@media (max-width: 768px) {
  .page-title--compact h1 {
    font-size: 32px;
  }
}

/* 상태 배지(접수/조사중/완료) */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  letter-spacing: -0.2px;
}
.status-badge--received {
  background: #fff7d1;
  color: #7a5a00;
  border-color: #ffe49a;
}
.status-badge--in-progress {
  background: #e8f1ff;
  color: #0b409e;
  border-color: #cfe1ff;
}
.status-badge--completed {
  background: #e9fbf0;
  color: #126b39;
  border-color: #c9f0d9;
}

/* 익명 제보 안내 배너(이메일 표로 이동 후에도 익명 여부는 강조) */
.result-anon-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f4faff;
  border: 1px dashed #2a5fbd;
  color: #0b409e;
  font-weight: 800;
}
.result-anon-banner .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a5fbd;
  flex: 0 0 auto;
}

/* 처리결과 조회(lookup) - 버튼 크기 개선 */
.lookup-submit-btn {
  width: 100%;
  height: 56px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .lookup-submit-btn {
    height: 54px;
    font-size: 17px;
    width:100% ! important;
  }
  .tab-btn{
  font-size:16px ! important;
  }
}

/* ===== Progress bar (report step 화면에서 사용) ===== */
.progress-bar {
  height: 10px;
  background: #eef0f3;
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #0053c6;
  border-radius: 999px;
}

/* ===== Modal (wfModal 포함) ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.show {
  display: flex;
}
.modal-box {
  width: min(460px, 92vw);
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  padding: 28px 26px;
  text-align: center;
}
.modal-content-text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  word-break: break-word;
}
/* 로딩 모드 (wfModal.showLoading) - 스피너·메시지를 모달 정가운데 정렬 */
.modal-loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 80px;
  box-sizing: border-box;
}
.modal-loading-wrap .modal-loading-spinner {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.modal-loading-wrap .modal-content-text {
  margin-bottom: 0;
}
.modal-loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0066cc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: wf-modal-spin 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes wf-modal-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.modal-btn {
  padding: 10px 16px;
  border: 1px solid #d0d5dd;
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size:15px;
  min-width: 90px;
  transition: 0.15s ease;
}
.modal-btn:hover {
  background: #f4faff;
}
.modal-btn-primary {
  border-color: #0053c6;
  background: #0053c6;
  color: #fff;
}
.modal-btn-primary:hover {
  background: #2a5fbd;
  border-color: #2a5fbd;
}

button.btn.btn-primary.lookup-submit-btn {
	width:30%
}

/* ===== Public header (default layout의 fragments/header.html) ===== */
.logo-box {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}
.public-nav-toggle {
  display: none;
  padding: 8px 12px;
  border: 1px solid #d0d5dd;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  width: auto;
}
.public-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.public-nav a {
  text-decoration: none;
  color: #353535;
  font-weight: 600;
}

/* Admin sidebar mobile toggle 버튼 */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #d0d5dd;
  color: #111;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}

/* ===== Button (legacy .btn 사용 템플릿 대응) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: #dbf0ff;
  color: #0b409e;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  background: #2a5fbd;
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(11, 64, 158, 0.25);
  transform: translateY(-1px);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn-primary {
  background: #2a5fbd;
  color: #ffffff;
}
.btn-primary:hover {
  background: #1f4d9f;
}
.btn-secondary {
  background: #ffffff;
  color: #0053c6;
  border: 1px solid #d0d5dd;
}
.btn-secondary:hover {
  background: #f4faff;
  color: #0053c6;
  box-shadow: none;
  transform: none;
}

/* ===== Admin: 이메일 템플릿 편집기 레이아웃(깨짐 방지) ===== */
.email-template-editor-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}
.email-template-editor-grid > * {
  min-width: 0;
}
.email-template-side-panel {
  position: sticky;
  top: 20px;
}

/* CKEditor 플러그인 드롭다운 위치/잘림 방지: 템플릿 수정 페이지에서만 그리드·콘텐츠 overflow 완화 (CKEditor DOM 미수정) */
.template-form-page .email-template-editor-grid {
  overflow: visible;
}
.template-form-page .email-template-editor-grid > *:first-child {
  overflow: visible;
}
/*
 * CKEditor 툴바 드롭다운이 툴바 버튼 바로 아래에 나오도록: 템플릿 폼 페이지에서만
 * - overflow-x: visible 로 드롭다운 잘림 방지
 * - position: static 으로 .content/.admin-container 가 드롭다운의 containing block 이 되지 않게 하여
 *   CKEditor 내부 좌표 계산이 툴바 아래에 맞게 적용됨 (CKEditor DOM 미수정)
 */
.admin-container .content:has(.template-form-page) {
  overflow-x: visible;
  position: static;
}
.admin-container:has(.template-form-page) {
  position: static;
}
/*
 * CKEditor 툴바 드롭다운이 툴바 버튼 바로 아래에 나오도록: 소통 약관 관리 페이지에도 동일 적용
 * - 약관 편집 화면은 템플릿 폼과 동일하게 드롭다운 패널이 툴바 기준으로 계산되어야 합니다.
 */
.admin-container .content:has(.report-agreement-page) {
  overflow-x: visible;
  position: static;
}
.admin-container:has(.report-agreement-page) {
  position: static;
}

/* ===== Responsive (wireframe 유틸 기반, 디자인 유지) ===== */

/* =========================================================
   Admin Responsive - 1100px 이하
   - 목적: 일반 사용자 페이지와 동일한 브레이크포인트 통일
   ========================================================= */
@media (max-width: 1100px) {
  /* 관리자 콘텐츠 영역 패딩 조정 */
  .admin-container .content {
    padding: 80px 24px 32px; /* 상단 패딩은 헤더 높이 고려 */
  }
  
  /* 사이드바 너비 약간 축소 */
  .admin-container .sidebar {
    width: 240px;
  }
  
  /* 테이블 폰트 크기 조정 */
  .admin-container table {
    font-size: 14px;
  }
  
  /* 페이지 제목 크기 조정 */
  .admin-container .page-title h1 {
    font-size: 36px;
  }
}

/* =========================================================
   Admin Responsive - 768px 이하
   - 목적: 일반 사용자 페이지와 동일한 브레이크포인트 적용
   - 사이드바 오버레이 처리 및 모바일 헤더 표시
   ========================================================= */
@media (max-width: 768px) {
  /* 상단 헤더 표시 */
  .admin-header {
    display: block !important;
  }
  
  /* 콘텐츠 영역에 헤더 높이만큼 상단 패딩 추가 */
  .admin-container .content {
    padding-top: 70px; /* 헤더 높이(66px) + 여유(4px) */
  }
  
  /* 사이드바를 오버레이로 전환 */
  .admin-container {
    position: relative;
  }
  
  /* 기본 사이드바 스타일보다 나중에 선언되어 우선순위 확보 */
  /* 사용자 페이지와 동일하게 우측에서 나오도록 변경 */
  body.admin-page .admin-container .sidebar {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(320px, 86vw) !important;
    height: 100dvh !important;
    background: #fff !important;
    transform: translateX(110%) !important;
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1) !important;
    z-index: 120 !important;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12) !important;
    overflow-y: auto;
    display: flex !important;
    flex-direction: column !important;
    padding: 18px 18px 20px !important;
    will-change: transform;
  }
  
  body.admin-page .admin-container .sidebar.open,
  body.menu-open .admin-container .sidebar {
    transform: translateX(0) !important;
  }
  
  /* 사이드바 내부 nav가 제대로 표시되도록 */
  .admin-container .sidebar.open nav,
  body.menu-open .admin-container .sidebar nav {
    display: block !important;
    visibility: visible !important;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }
  
  /* 사이드바 내부 헤더 스타일 (닫기 버튼 영역) */
  .admin-container .sidebar .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
  }
  
  /* 사이드바 오픈 시 배경 딤 처리 (사용자 페이지와 동일) */
  .admin-container .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 119;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    cursor: pointer;
  }
  
  .admin-container.sidebar-open .sidebar-overlay,
  body.menu-open .admin-container .sidebar-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  
  /* 사이드바가 열려있을 때 body 스크롤 방지 */
  body.sidebar-open {
    overflow: hidden;
  }
  
  /* 콘텐츠 영역 전체 너비 사용 */
  .admin-container .content {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 70px 16px 0px !important; /* 상단 패딩은 헤더 높이 고려, 사용자 페이지와 동일한 패딩 */
    flex: 1;
  }
  
  /* 테이블 폰트 크기 조정 */
  .admin-container table {
    font-size: 13px;
  }
}

/* =========================================================
   Admin Responsive - 920px 이하
   - 목적: 일반 사용자 페이지와 동일한 브레이크포인트
   ========================================================= */
@media (max-width: 920px) {
  /* 관리자 테이블 카드 스타일 (일반 사용자와 동일) */
  .admin-container .table-card {
    padding: 20px 18px;
  }
  
  /* 테이블 헤더/셀 패딩 조정 */
  .admin-container thead th {
    padding: 14px 12px;
    font-size: 14px;
  }
  
  .admin-container tbody td {
    padding: 12px 8px;
    font-size: 14px;
  }
  
  /* 페이지 제목 크기 조정 */
  .admin-container .page-title h1 {
    font-size: 32px;
  }
  
  /* 콘텐츠 패딩 조정 */
  .admin-container .content {
    padding: 80px 20px 28px; /* 상단 패딩은 헤더 높이 고려 */
  }
}

/* =========================================================
   Admin Responsive - 860px 이하
   - 목적: 일반 사용자 페이지와 동일한 브레이크포인트
   ========================================================= */
@media (max-width: 860px) {
  /* 사이드바 브랜드 영역 조정 */
  .admin-container .admin-brand .admin-logo {
    font-size: 18px;
  }
  
  .admin-container .admin-brand .admin-sub {
    font-size: 11px;
  }
  
  /* 페이지 제목 크기 조정 */
  .admin-container .page-title h1 {
    font-size: 30px;
  }
  
  /* 콘텐츠 패딩 조정 */
  .admin-container .content {
    padding: 80px 18px 26px; /* 상단 패딩은 헤더 높이 고려 */
  }
}

@media (max-width: 768px) {
  /* Public header nav 토글 */
  .public-nav-toggle {
    display: inline-block;
  }
  .public-nav {
    display: none;
    width: 100%;
  }
  .public-nav.open {
    display: block;
  }
  .public-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
  }

  /* Admin sidebar 토글 (768px 이하에서는 오버레이 상태) */
  .admin-container .sidebar {
    width: 260px;
    max-width: 85vw;
    padding: 12px 20px;
  }
  
  .admin-container .sidebar nav {
    display: block !important;
    visibility: visible !important;
    margin-top: 10px;
    opacity: 1 !important;
  }
  
  /* 사이드바 오버레이가 열려있을 때 스크롤 방지 */
  body.sidebar-open {
    overflow: hidden;
  }
  
  /* 테이블 폰트 크기 추가 조정 */
  .admin-container table {
    font-size: 13px;
  }
  
  /* 페이지 제목 크기 조정 */
  .admin-container .page-title h1 {
    font-size: 28px;
  }

  /* Grid 1단 */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Email editor: stack columns */
  .email-template-editor-grid {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }
  .template-form-page .email-template-editor-grid {
    overflow-x: visible;
  }
  .email-template-side-panel {
    position: static;
    top: auto;
  }

  /* Admin settings: 탭바 줄바꿈 */
  .admin-tab-bar {
    flex-wrap: wrap;
    gap: 12px !important;
  }
}

/* =========================================================
   Admin Responsive - 560px 이하
   - 목적: 일반 사용자 페이지와 동일한 브레이크포인트, 테이블 카드 변환
   ========================================================= */
@media (max-width: 560px) {
  /* 콘텐츠 패딩 추가 조정 */
  .admin-container .content {
    padding: 80px 12px 20px !important; /* 상단 패딩은 헤더 높이 고려 */
  }
  
  /* 페이지 제목 크기 조정 */
  .admin-container .page-title {
    margin-bottom: 24px;
  }
  
  .admin-container .page-title h1 {
    font-size: 26px;
  }
  
  /* 테이블 카드 패딩 조정 */
  .admin-container .table-card {
    padding: 16px 12px;
  }
  
  /* 테이블을 카드 형태로 변환 (일반 사용자와 동일한 패턴) */
  .admin-container .table-responsive .table-inner {
    overflow: visible;
  }
  
  .admin-container .table-responsive .table-inner table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
  }
  
  .admin-container .table-responsive .table-inner thead {
    display: none;
  }
  
  .admin-container .table-responsive .table-inner tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 10px;
    padding: 16px 12px;
    border-bottom: 1px solid #edf0f4;
    margin-bottom: 12px;
  }
  
  .admin-container .table-responsive .table-inner tbody td {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }
  
  .admin-container .table-responsive .table-inner tbody td:first-child {
    font-size: 12px;
    color: #535455;
  }
  
  .admin-container .table-responsive .table-inner tbody td:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    color: #4e4e4e;
  }
  
  .admin-container .table-responsive .table-inner tbody td:nth-child(3) {
    font-size: 15px;
    line-height: 1.3;
    color: #333;
    font-weight: 700;
  }
  
  /* 버튼 크기 조정 */
  .admin-container .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* =========================================================
   Admin Responsive - 480px 이하
   - 목적: 일반 사용자 페이지와 동일한 브레이크포인트, 작은 모바일 최적화
   ========================================================= */
@media (max-width: 480px) {
  /* 콘텐츠 패딩 최소화 */
  .admin-container .content {
    padding: 80px 10px 20px !important;
  }
  
  /* 페이지 제목 크기 최소화 */
  .admin-container .page-title {
    margin-bottom: 20px;
  }
  
  .admin-container .page-title h1 {
    font-size: 24px;
  }
  
  /* 사이드바 패딩 조정 */
  .admin-container .sidebar {
    padding: 12px 16px;
  }
  
  /* 테이블 카드 패딩 최소화 */
  .admin-container .table-card {
    padding: 12px 10px;
  }
  
  /* 테이블 폰트 크기 최소화 */
  .admin-container .table-responsive .table-inner tbody td {
    font-size: 12px;
  }
  
  /* 버튼 크기 조정 */
  .admin-container .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  /* 폼 요소 크기 조정 */
  .admin-container .form-control,
  .admin-container .form-select,
  .admin-container textarea {
    font-size: 14px;
    padding: 12px 14px;
  }
  
  /* 필터 그리드 1열로 변환 */
  .admin-container .report-filter-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Admin Theme (기존 admin-theme.css → style.css)
   - 목적: 관리자 영역(UI)에 디자이너 톤(색상/버튼/여백)을 적용합니다.
   - 범위: `.admin-container` 내부 중심으로 적용하여 대외 화면 영향 최소화
   ========================================================= */

:root {
  --hvoice-blue: #0053c6;
  --hvoice-blue-hover: #2a5fbd;
  --hvoice-blue-soft: #dbf0ff;
  --hvoice-text: #222222;
  --hvoice-muted: #6b7280;
  --hvoice-border: #e5e7eb;
  --hvoice-bg: #ffffff;
  --hvoice-bg-soft: #f9fafb;

  /* 관리자 영역 표면(메뉴/콘텐츠) 분리용 */
  --admin-surface: #ffffff;
  --admin-surface-2: #f5f7fa;
  --admin-divider: #e9eef5;
}

/* Admin 전체 배경/폰트 톤 */
/* =========================
   Admin Header (상단 헤더)
   ========================= */
.admin-header {
  display: none; /* 기본적으로 숨김 (데스크톱) */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 18px; /* 사용자 페이지와 동일한 패딩 */
  background: #fff;
  border-bottom: 1px solid var(--admin-divider);
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px; /* 사용자 페이지와 동일한 min-height */
  max-width: 100%;
}

.admin-header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-header-logo {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  color: #111;
  font-family: "Paperlogy-Regular", system-ui, sans-serif;
  line-height: 1.2;
}

.admin-header-sub {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  font-family: "Paperlogy-Regular", system-ui, sans-serif;
}

.admin-mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.admin-mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.admin-mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.admin-mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.admin-mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.admin-container {
  /* 관리자 레이아웃 기본 구조 (styles.css에서 이관) */
  display: flex;
  /* 콘텐츠 영역은 연한 배경, 카드(table-card/detail-card)는 흰색으로 대비 */
  background: var(--admin-surface-2);
  color: var(--hvoice-text);
  min-height: 100vh;
}

/* 기존 wireframe(main/global) 영향 차단 */
.admin-container main {
  padding: 0;
  text-align: left;
}

/* =========================
     Sidebar (Admin Nav)
   ========================= */
.admin-container .sidebar {
  width: 260px;
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.3s ease;
  /* 메뉴 리스트는 흰색 + 그림자로 콘텐츠와 구분 */
  background: var(--admin-surface);
  color: var(--hvoice-text);
  /* [중요] 관리자 메뉴 폰트는 Paperlogy로 고정 */
  font-family: "Paperlogy-Regular", "Paperlogy", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  border-right: 1px solid var(--admin-divider);
  box-shadow: 10px 0 24px rgba(0, 0, 0, 0.05);
  position: relative; /* 1024px 이하에서 fixed로 오버라이드됨 */
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.admin-container .sidebar nav {
  display: block;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.admin-container .sidebar h3 {
  color: var(--hvoice-text);
}

.admin-container .sidebar a {
  color: #353535;
  border-bottom: 1px solid #f0f0f0;
}

.admin-container .sidebar a:hover,
.admin-container .sidebar a.active {
  color: var(--hvoice-blue);
  background: #f4faff;
  /* active/hover에서만 굵기가 바뀌면 글씨가 "튄" 것처럼 보여서,
     굵기는 .sidebar-link(기본)과 동일하게 유지합니다. */
}

.admin-container .sidebar .sidebar-section-title {
  display: block;
  margin-top: 14px;
  padding: 12px 8px 10px;
  border-top: 1px solid var(--admin-divider);
  color: var(--hvoice-text);
  font-size: 16px;
  font-weight: 800;
  /* [중요] 메뉴 섹션 타이틀도 Paperlogy 상속 고정 */
  font-family: inherit;
  letter-spacing: 0.04em;
}

/* 메뉴 링크를 "리스트 아이템"처럼 정리 (구분/가독성 ↑) */
.admin-container .sidebar .sidebar-link {
  display: block;
  position: relative;
  padding: 10px 12px;
  margin: 2px 0;
  border-radius: 10px;
  border-bottom: none;
  /* active/non-active 간 글씨체(굵기) 차이 제거 */
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.admin-container .sidebar .sidebar-link.sidebar-link-sub {
  padding-left: 22px;
}

/* active 강조(좌측 인디케이터) */
/* 굵기는 기본(.sidebar-link)과 동일, 색/배경/인디케이터로만 강조 */
.admin-container .sidebar .sidebar-link.active::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--hvoice-blue);
}

/* 사이드바 첫 블록 (로고/헤더 등) */
.admin-container .sidebar > div:first-child {
  flex-shrink: 0;
  margin-bottom: 14px;
}

/* 데스크톱: 모바일 전용 닫기(X) 버튼 영역 숨김 — 768px 이하에서만 표시 */
.admin-container .sidebar .mobile-menu-head {
  display: none;
}

.admin-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-brand .admin-logo {
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  color: #111;
}
.admin-brand .admin-sub {
  font-size: 12px;
  color: var(--hvoice-muted);
  font-weight: 500;
}

/* =========================
        Content Layout
   ========================= */
.admin-container .content {
  flex: 1;
  min-width: 0; /* flex item overflow 방지 */
  padding: 40px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  /* admin-container 배경이 비치도록 투명 처리 */
  background: transparent;
  position: relative;
  z-index: 1;
}

/* wireframe의 .container(검은 테두리/패딩) 제거 */
.admin-container .container {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin-top: 0 !important;
  box-shadow: none !important;
}

/* =========================================================
   Admin Layout Spacing (빈 공간 축소)
   - 대상: 대시보드(/admin/dashboard), 제보현황(/admin/reports)
   - 원인: style.css의 body.admin-page .container max-width(1200)로 인해
           대형 해상도에서 좌/우 공백이 과하게 발생
   ========================================================= */
body.admin-page .admin-container .container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 0 40px !important;
}

/* 관리자 화면 제목: 과도한 하단 여백/큰 글자 축소 */
body.admin-page .admin-container .page-title {
  text-align: left;
  margin-bottom: 32px !important;
}
body.admin-page .admin-container .page-title h1 {
  font-size: 38px;
}

/* 탭/카드 여백 축소 (콘텐츠 밀도 ↑) */
body.admin-page .admin-container .tab-wrap {
  padding-right: 0;
}
body.admin-page .admin-container .table-card {
  padding: 22px 22px 18px;
}

/* =========================
      Card / Box (wf-box)
   ========================= */
.admin-container .wf-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  /* 관리자 카드 공통 여백(설정/상세 화면에서 상단/좌우 padding 누락 방지) */
  padding: 22px 22px 18px;
}

/* wf-box 내부 첫/마지막 요소의 margin collapse로 인한 들뜸 방지 */
.admin-container .wf-box > :first-child {
  margin-top: 0;
}
.admin-container .wf-box > :last-child {
  margin-bottom: 0;
}

/* =========================
   Admin - Reports Filter UI
   - 기능: 제보 관리(/admin/reports) 조건 검색 영역 레이아웃/입력 UI를 안정적으로 유지합니다.
   - 목적: CSS 통합 후 그리드/여백 충돌로 깨지는 현상을 방지하고, 선택(셀렉트) UI를 개선합니다.
   - 접기/펼치기: report-filter-header + report-filter-body, --collapsed 시 본문 숨김
   ========================= */
.admin-container .report-filter-card{
  padding:18px 18px 16px;
  /* [제보 관리] 필터 영역도 Paperlogy로 고정(폰트 흔들림 방지) */
  font-family: "Paperlogy-Regular", "Paperlogy", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 검색 조건 헤더 (접기/펼치기 토글 포함) */
.admin-container .report-filter-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
  padding-bottom:10px;
  border-bottom:1px solid var(--hvoice-border, #e0e0e0);
}
.admin-container .report-filter-card.report-filter-card--collapsed .report-filter-header{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}
.admin-container .report-filter-title{
  font-size:16px;
  font-weight:800;
  color:#111;
  font-family:inherit;
}
.admin-container .report-filter-toggle-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  min-height:auto;
  height:auto;
  font-size:14px;
  white-space:nowrap;
}
.admin-container .report-filter-toggle-btn .report-filter-toggle-icon{
  font-size:20px;
  vertical-align:middle;
  transition:transform 0.2s ease;
}
.admin-container .report-filter-card.report-filter-card--collapsed .report-filter-toggle-icon{
  transform:rotate(180deg);
}

/* 접힌 상태: 필터 본문 숨김 */
.admin-container .report-filter-body{
  overflow:hidden;
  transition:opacity 0.2s ease;
}
.admin-container .report-filter-card.report-filter-card--collapsed .report-filter-body{
  display:none;
}

.admin-container .report-filter-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px 16px;
  align-items:end;
}

/* =========================================================
   Admin - Reports Filter Row Spacing
   - 기능: 1행(select/text)과 2행(date/buttons) 사이 여백을 통일합니다.
   - 목적: "상태" select와 "접수 시작일" 라벨이 붙어 보이는 문제 해결
   ========================================================= */
.admin-container .report-filter-card .report-filter-grid--bottom{
  margin-top: 16px;
}
.admin-container .report-date-range-field{
  min-width: 0;
}
.admin-container .report-date-range-inputs{
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-container .report-date-range-inputs .form-control{
  flex: 1 1 0;
  min-width: 0;
}
.admin-container .report-date-range-separator{
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.admin-container .report-filter-grid--2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

/* 두 번째 줄은 (시작/종료/버튼) 3개 요소이므로 버튼 영역이 남는 칸을 채우도록 확장 */
.admin-container .report-filter-grid--bottom .report-filter-actions{
  grid-column: 3 / -1;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  align-items:flex-end;
}
.admin-container .report-filter-actions--right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

/* 라벨 톤/간격 (필드 위 캡션) */
.admin-container .report-filter-card label.fw-bold{
  display:block;
  /* [제보 관리] 조건 라벨과 입력 요소 간격 통일 */
  margin-bottom:10px;
  /* 요청사항: 항목 문구(라벨) 폰트 크기 상향 */
  font-size:15px;
  font-weight:800;
  color:#111;
  font-family: inherit;
}

/* =========================================================
   Admin - Form Label Spacing (공통)
   - 기능: label(특히 fw-bold)과 입력요소 사이 간격을 통일합니다.
   - 적용: 상세 처리/폼 화면 등에서 label이 select/textarea에 붙어 보이는 문제 해결
   ========================================================= */
.admin-container label.fw-bold {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

/* 날짜 입력은 기본 브라우저 스타일 편차가 커서 높이/패딩을 고정 */
.admin-container .report-filter-card input[type="date"].form-control{
  height:52px;
  padding:0 16px;
  box-sizing:border-box;
}

/* 셀렉트 UI 개선 (디자이너 톤: 라운드 + 커스텀 화살표) */
.admin-container .report-filter-card select.form-select{
  height:52px;
  padding:0 54px 0 16px;
  box-sizing:border-box;
  background-color:#fff;
  background-image:url("../img/icon_select_arrow.png");
  background-repeat:no-repeat;
  background-position:right 18px center;
  background-size:24px 24px;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

/* 검색어 입력(텍스트)도 높이를 맞춰 일관성 유지 */
.admin-container .report-filter-card input[type="text"].form-control{
  height:52px;
  padding:0 16px;
  box-sizing:border-box;
}

/* 버튼도 필드 높이에 맞춰 정렬 */
.admin-container .report-filter-actions .btn{
  height:52px;
  padding:0 18px;
}

/* 반응형: 1024 이하에서는 2열, 560 이하에서는 1열 */
@media (max-width:1024px){
  .admin-container .report-filter-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .admin-container .report-filter-grid--bottom .report-filter-actions{
    grid-column: 1 / -1;
    justify-content:flex-start;
  }
}
@media (max-width:560px){
  .admin-container .report-filter-grid{
    grid-template-columns:1fr;
  }
}

/* =========================
        Form Controls
   ========================= */
.admin-container .form-control,
.admin-container .form-select,
.admin-container textarea {
  border: 1px solid var(--hvoice-border);
  background: var(--hvoice-bg-soft);
  border-radius: 12px;
  /* [중요] 테이블/그리드 내부에서 100% 폭 계산 시 가로 오버플로우(스크롤) 방지 */
  box-sizing: border-box;
  max-width: 100%;
}

/* =========================================================
   Admin - Email Template Form (가로 스크롤 제거)
   - 현상: "템플릿 정보" 테이블 영역에 불필요한 가로 스크롤이 표시됨
   - 원인: input.form-control이 테이블 컨테이너 폭을 미세하게 초과(브라우저/box-sizing 조합)
   - 해결: 테이블 내 form-control을 폭 100% + max-width 100%로 고정
   ========================================================= */
.admin-container .email-template-editor-grid .wf-table .form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.admin-container .form-control:focus,
.admin-container .form-select:focus,
.admin-container textarea:focus {
  outline: none;
  border-color: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #fff;
}

/* =========================
           Buttons
   ========================= */
.admin-container .btn {
  border: none;
  border-radius: 999px;
  background: var(--hvoice-blue-soft);
  color: #0b4aa7;
  font-size:16px;
  font-weight: 600;
  padding: 12px 25px;
  cursor: pointer;
  transition: 0.2s ease;
}
.admin-container .btn.btn-sm{
  padding: 8px 12px;
  font-size: 13px;
}

.admin-container .btn:hover {
  background: var(--hvoice-blue-hover);
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(11, 64, 158, 0.25);
  transform: translateY(-1px);
}

.admin-container .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* wireframe 버튼 변형들(클래스는 유지하되 톤만 변경) */
.admin-container .btn-primary {
  background: var(--hvoice-blue-hover);
  color: #ffffff;
}
.admin-container .btn-primary:hover {
  background: #1f4d9f;
}

.admin-container .btn-secondary {
  background: #ffffff;
  color: var(--hvoice-blue);
  border: 1px solid #d0d5dd;
}
.admin-container .btn-secondary:hover {
  background: #f4faff;
  color: var(--hvoice-blue);
  box-shadow: none;
  transform: none;
}

.admin-container .btn-danger {
  background: #ff6b6b;
  color: #ffffff;
}
.admin-container .btn-danger:hover {
  background: #e64545;
}

.admin-container .btn-success {
  background: #2e7d32;
  color: #ffffff;
}
.admin-container .btn-success:hover {
  background: #256628;
}

.admin-container .btn-info {
  background: #286e77;
  color: #ffffff;
}
.admin-container .btn-info:hover {
  background: #1f5660;
}

/* =========================
      Table (Admin list)
   ========================= */
.admin-container .table-responsive {
  border: 1px solid #ddd;
  border-radius: 12px;
}

/* table-card 내부 테이블의 wireframe 인라인(border/padding) 무력화 */
.admin-container .table-card table th,
.admin-container .table-card table td {
  border: 0 !important;
  padding: 14px 16px !important;
}
.admin-container .table-card table thead tr {
  background: transparent !important;
}

/* =========================
     Login Page (Admin)
   ========================= */
.admin-login-page {
  background: #f5f7fa;
  /* 로그인 화면 중앙 정렬 + 모바일 안전 여백 */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  box-sizing: border-box;
}
.admin-login-card {
  width: min(420px, 92vw);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 38px 34px;
  border: 1px solid #eef0f3;
}
.admin-login-card .form-control{
  /* (중요) width:100% + padding 조합에서 우측 오버플로우 방지 */
  box-sizing: border-box;
}
.admin-login-card .btn{
  width: 30%;
  height: 52px;        /* 입력 필드(52px)와 높이 통일 */
  padding: 0 18px;     /* 세로 padding 대신 높이로 정렬 */
  box-sizing: border-box;
  margin: 0 auto;
  display:block;
}
.admin-login-title {
  text-align: center;
  font-size: 35px;
  font-weight: 800;
  margin: 0 0 40px;
}
.admin-login-desc {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin: 12px 0 0;
}

/* =========================================================
   반응형 카드 뷰 스타일
   - 목적: ExtJS Grid를 사용하는 페이지에서 모바일 화면 시 카드 형식으로 표시
   - 브레이크포인트: 560px (대시보드와 동일)
   ========================================================= */

/* 카드 뷰 컨테이너 */
#reportCardView,
#userCardView {
  display: none;
}

.responsive-card-item {
  margin-bottom: 16px;
}

/* 제보 카드 스타일 */
.report-card,
.user-card {
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  padding: 16px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}

.report-card:hover,
.user-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 카드 헤더 (체크박스 + 번호) */
.report-card-header,
.user-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

/* 카드 체크박스 */
.report-card-checkbox,
.user-card-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.report-card-checkbox input[type="checkbox"],
.user-card-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0;
  accent-color: #2f6bff;
}

.report-card-number,
.user-card-number {
  font-size: 13px;
  color: #535455;
  font-weight: 500;
}

/* 카드 본문 */
.report-card-body,
.user-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 카드 행 (라벨 + 값) */
.report-card-row,
.user-card-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.report-card-label,
.user-card-label {
  min-width: 80px;
  font-weight: 600;
  color: #535455;
  flex-shrink: 0;
}

.report-card-value,
.user-card-value {
  flex: 1;
  color: #333;
  word-break: break-word;
}

.report-card-title {
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.report-card-link {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

.report-card-link:hover {
  color: #0053c6;
}

/* 카드 액션 버튼 영역 */
.user-card-actions {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.user-card-actions .btn {
  flex: 1;
  min-width: 80px;
}

/* 모바일 뷰 (560px 이하)에서만 카드 뷰 표시 - JavaScript로 제어하므로 기본값만 설정 */
/* JavaScript의 initResponsiveCardView가 화면 크기에 따라 display를 제어합니다 */

  .report-card,
  .user-card {
    padding: 14px 10px;
  }

  .report-card-label,
  .user-card-label {
    min-width: 70px;
    font-size: 13px;
  }

  .report-card-value,
  .user-card-value {
    font-size: 13px;
  }

  .report-card-number,
  .user-card-number {
    font-size: 12px;
  }

  .user-card-actions .btn {
    font-size: 13px;
    padding: 8px 12px;
  }


/* 480px 이하 추가 최적화 */
@media (max-width: 480px) {
  .report-card,
  .user-card {
    padding: 12px 8px;
  }

  .report-card-header,
  .user-card-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .report-card-body,
  .user-card-body {
    gap: 8px;
  }

  .report-card-label,
  .user-card-label {
    min-width: 65px;
    font-size: 12px;
  }

  .report-card-value,
  .user-card-value {
    font-size: 12px;
  }
}
