@charset "utf-8";
/* /manual/style.css */

.manual-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
  line-height: 1.7;
}

.manual-container h1 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2b3a67;
}

.manual-container h2 {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #2b3a67;
  border-left: 4px solid #2b3a67;
  padding-left: 10px;
}

.manual-container .manual-desc {
  margin-bottom: 30px;
  color: #555;
}

.manual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manual-list li {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  background: #fff;
}

.manual-list li:hover {
  background: #f9fafb;
  transform: translateX(3px);
}

.manual-list a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
}

.manual-list strong {
  display: block;
  color: #111;
}

.manual-list span {
  color: #666;
}
.manual-box ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.manual-box ol li {
  margin-bottom: 6px;
}
.manual-list-numbered {
  list-style: none;
  margin: 10px 0 10px 0;
  padding-left: 0;
}
.manual-list-numbered li {
  margin-bottom: 6px;
  color: #1e293b;
}
.manual-list-numbered strong {
  color: #111;
}


.manual-steps {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 25px;
  color: #333;
}
.manual-steps li {
  margin-bottom: 15px;
}
.manual-steps em {
  color: #2b6cb0;
  font-style: normal;
  font-weight: 600;
}

.manual-checklist {
  list-style: none;
  margin: 10px 0 20px 0;
  padding-left: 0;
}
.manual-checklist li {
  margin-bottom: 8px;
  color: #444;
}

.manual-notice {
  list-style: none;
  margin: 10px 0 25px 0;
  padding-left: 0;
  color: #555;
}
.manual-notice li {
  margin-bottom: 6px;
}

.manual-next {
  text-align: right;
  margin-top: 30px;
}
.manual-next .next-link {
  display: inline-block;
  background: #2b3a67;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
}
.manual-next .next-link:hover {
  background: #1f2a4a;
}

.manual-steps li strong {
  color: #1e293b;
  font-weight: 600;
}
.manual-checklist li strong {
  color: #111;
}

.manual-faq-list h2 {
  font-size: 1.2rem;
  color: #2b3a67;
  border-left: 4px solid #2b3a67;
  padding-left: 10px;
  margin-top: 30px;
}

.manual-faq-list dl {
  margin: 15px 0 25px 10px;
}

.manual-faq-list dt {
  font-weight: bold;
  color: #111;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.manual-faq-list dt::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-weight: bold;
}

.manual-faq-list dd {
  margin: 0 0 15px 20px;
  color: #444;
  line-height: 1.6;
}

.manual-faq-list dd a {
  color: #1d4ed8;
  text-decoration: underline;
}


/* ────────────────────────────────
   매뉴얼 공통 헤더 + 탭 메뉴
──────────────────────────────── */
.manual-header {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

.manual-header-inner {
  text-align: center;
  padding: 10px 15px 10px 15px;
}

.manual-header h1 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 10px;
}

.manual-header .subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

.manual-tabmenu {
  background: #f1f5f9;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.manual-tabmenu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.manual-tabmenu li {
  margin: 0;
  border-right: 1px solid #e5e7eb;
}

.manual-tabmenu li:last-child {
  border-right: none;
}

.manual-tabmenu a {
  display: block;
  padding: 12px 10px;
  color: #374151;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s;
}

.manual-tabmenu a:hover {
  background: #e2e8f0;
  color: #111827;
}

.manual-tabmenu li.active a {
  background: #2b3a67;
  color: #fff;
  font-weight: 600;
  border-bottom: 3px solid #1e293b;
}


/* ────────────────────────────────
   매뉴얼 하단 이전/다음 버튼
──────────────────────────────── */
.manual-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
}

.manual-footer-nav a,
.manual-footer-nav span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.manual-footer-nav a {
  background: #2b3a67;
  color: #fff;
  font-weight: 500;
}

.manual-footer-nav a:hover {
  background: #1f2a4a;
}

.manual-footer-nav .disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: default;
}

.manual-footer-nav .btn-prev {
  text-align: left;
}

.manual-footer-nav .btn-next {
  text-align: right;
}

/* 관리자 전용 탭 스타일 */
.admin-tabmenu {
  background: #fff8f0;
  border-top: 2px solid #f59e0b;
}
.admin-tabmenu li.active a {
  background: #f59e0b;
  color: #fff;
  border-bottom: 3px solid #b45309;
}
.admin-tabmenu a:hover {
  background: #fde68a;
  color: #111827;
}


/* 관리자 매뉴얼 전용 레이아웃(선택) */
.manual-alumni-company h1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.manual-tip {
  display: inline-block;
  background: #f1f5f9;
  color: #555;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

/* 박스형 설명 블록 */
.manual-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px 18px;
  margin-bottom: 20px;
}

/* 강조 TIP 블록 */
.manual-tip-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 12px 15px;
  margin: 20px 0;
  color: #92400e;
}

/* 코드/SQL 블록 */
.manual-code {
  background: #0f172a;
  color: #e5e7eb;
  padding: 12px 15px;
  border-radius: 6px;
  margin: 15px 0 25px 0;
  overflow-x: auto;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.manual-center {
  text-align:center;
}

/* 테이블 스타일 (DB 설명 등) */
.manual-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 25px 0;
}
.manual-table th,
.manual-table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
}
.manual-table thead th {
  background: #f1f5f9;
  color: #111827;
  font-weight: 600;
}
.manual-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* 이미지 및 캡션 스타일 (관리자 매뉴얼용) */
.manual-image {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 15px auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.manual-img-desc {
  text-align: center;
  color: #6b7280;
  margin-top: 5px;
}


/* ───────────────
   앱 매뉴얼 전용 레이아웃
────────────────*/
.manual-app-guide-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 25px 0;
}

.manual-app-guide-item {
  flex: 0 1 280px;
  text-align: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 10px;
}

.manual-app-platform {
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 8px;
}

.manual-app-store-btn {
  height: 45px;
  margin: 5px 0 10px 0;
}

.manual-app-qr {
  width: 110px;
  height: 110px;
  border-radius: 6px;
  margin: 10px auto;
  display: block;
  border: 1px solid #e5e7eb;
}

.manual-app-qr:hover {
  transform: scale(1.05);
  transition: transform 0.2s;
  border-color: #2b3a67;
}

.manual-app-qr-caption {
  font-size: 0.85rem;
  color: #555;
}


@media (max-width: 640px) {
  .manual-container {
    padding: 15px;
    margin: 10px auto;
  }

  .manual-header h1 {
    font-size: 1.3rem;
  }

  .manual-tabmenu a {
    padding: 10px 12px;
  }

  .manual-footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .manual-app-guide-flex {
    flex-direction: column;
    align-items: center;
  }
}