/*-------------------------- 
				°øÅë ÃÊ±âÈ­ 
--------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans KR', sans-serif;
}

body {
	background: #fff;
	color: #333;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

.nbsp{display:inline-block;width:1px;height:12px;background:#fff;margin:0 10px;}
.nbsp1{display:inline-block;width:1px;height:8px;background:#9ca3af;margin:0 5px;}
.pad20{padding:20px;}

/*--------------------------  
				Çì´õ ¿µ¿ª 
--------------------------*/
:root {
	--navy: #14223A;
	--blue: #1FA7FF;
	--accent: #FF9E57;
	--bg: #F5F7FB;
	--text: #333;
	--radius-lg: 18px;
	--shadow-soft: 0 14px 40px rgba(10, 24, 60, 0.12);
	--shadow-card: 0 6px 18px rgba(15, 35, 70, 0.12);
}

* { box-sizing: border-box; margin:0; padding:0; font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; }


/* »ó´Ü¹Ù */
.top-bar {
	width: 100%;
	background: #f5f5f5;
	border-bottom: 1px solid #ddd;
}
   
.top-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 5px 15px;
	text-align: right;
	font-size: 14px;
	color: #333;
}

.top-bar-inner a {
	color: #999;
	text-decoration: none;
	margin-left: 15px;
	position: relative;
}

.top-bar-inner a:hover { color: #005bab; }
.top-bar-inner a:first-child { margin-left: 0; }
.top-bar-inner a + a::before {
	content: "|";
	color: #999;
	position: absolute;
	left: -10px;
	top: 0;
}

/* Header */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(16px);
	background: rgba(255,255,255,0.96);
	border-bottom: 1px solid rgba(20,34,58,0.06);
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.logo-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-mark {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: linear-gradient(145deg, var(--blue), var(--accent));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
}
  
.logo-text-main {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
}

.logo-text-sub {
	font-size: 10px;
	color: #78839b;
	margin-top: -2px;
}

 nav.menu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 22px;
	font-size: 16px;
	color: #4a5568;
}

nav.menu a {
	position: relative;
	padding-bottom: 4px;
}

nav.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--blue);
	transition: width 0.2s;
}
 
nav.menu a:hover::after { width: 100%; }

.header-cta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6b7280;
	text-align: right;
}

.header-btn {
	padding: 4px 12px;
	border-radius: 999px;
	border: 1px solid rgba(31,167,255,0.35);
	background-color: #fff;
	color: var(--blue);
	font-weight: 500;
	font-size: 12px;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s;
}

.header-btn:hover {
	background-color: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

/* ¸ð¹ÙÀÏ ÇÜ¹ö°Å ¹öÆ° */
.menu-toggle {
	display: none;
	flex-direction: column;
	width: 30px;
	height: 22px;
	justify-content: space-between;
	cursor: pointer;
}

.menu-toggle .bar {
	width: 100%;
	height: 3px;
	background-color: var(--navy);
}

/* ¸ð¹ÙÀÏ »çÀÌµå¹Ù */
.sidebar {
	position: fixed;
	top: 80px;
	left: -100%;
	width: 250px;
	height: calc(100% - 80px);
	background: #fff;
	box-shadow: 4px 0 12px rgba(0,0,0,0.1);
	transition: left 0.3s ease;
	padding: 20px;
	z-index: 1000;
	overflow-y: auto;
}
 
.sidebar.open { left: 0; }
.sidebar ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar li {
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

.sidebar li .header-btn {
	display: inline-block; 
	width: auto;           
	max-width: 200px;      
}

.sidebar li.show {
	opacity: 1;
	transform: translateX(0);
}

.sidebar li a { font-size:16px; color:#000; }

/* ¹ÝÀÀÇü */
@media (max-width:1024px){
	.top-bar { display: none; }
	nav.menu, .header-cta { display: none; }
	.menu-toggle { display: flex; }
	.sidebar { display: block; }
  }

/*-------------------------- 
				¸ÞÀÎÀÌ¹ÌÁö
--------------------------*/

/* Hero */
.hero {
	background: radial-gradient(circle at top left, rgba(31,167,255,0.18), transparent),radial-gradient(circle at top right, rgba(255,158,87,0.16), transparent),var(--bg);
	padding: 40px 20px 48px;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0,1.8fr) minmax(260px,1.2fr);
	gap: 40px;
	align-items: center; /* ¡ç flex-start ¡æ center·Î º¯°æ */
}

.hero-kicker {
	font-size: 11px;
	color: var(--blue);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.hero-title {
	font-size: 30px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.35;
	margin: 0 0 14px;
}

.hero-title span {
	color: var(--blue);
	font-weight: 800;
}

.hero-sub {
	font-size: 14px;
	color: #5f6c80;
	margin: 0 0 22px;
	max-width: 520px;
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
	font-size: 11px;
}

.hero-tags span {
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(20,34,58,0.04);
	color: #6b7280;
}

.hero-tags span strong {
	color: var(--navy);
	font-weight: 600;
}

.hero-panel {
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 19px;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(20,34,58,0.06);
}

.panel-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 10px;
}

.panel-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
	font-size: 11px;
}

.panel-badges span {
	padding: 3px 7px;
	border-radius: 999px;
	background: rgba(31,167,255,0.06);
	color: #2563eb;
}

.panel-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 8px;
	margin-bottom: 12px;
	font-size: 12px;
	color: #6b7280;
}

.panel-metrics div strong {
	display: block;
	font-size: 14px;
	color: var(--navy);
	margin-bottom: 2px;
}

.panel-note {
	font-size: 12px;
	color: #9ca3af;
	line-height: 1.5;
}

.panel-cta {
	margin-top: 8px;
	display: flex;
	justify-content: flex-end;
}

.panel-cta a {
	font-size: 10px;
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid var(--accent);
	color: var(--accent);
	font-weight: 500;
}

/* °Ë»ö ¿µ¿ª */
.search-wrap {
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  gap: 6px;
  margin: 0 auto;
  max-width: 1200px;
  justify-content: stretch;
  flex-wrap: wrap;
}

.search-select,
.search-input {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 12px;
  padding: 0 10px;
  height: 36px;
  background: #ffffff;
  color: #111827;
  font-family: inherit;
  flex: 1;
  min-width: 0;
}

.search-select {
  flex: 0 0 150px;
}
.search-input {
  flex: 1;
}

.search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #9ca3af 50%),
    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 13px,
    calc(100% - 8px) 13px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 26px;
  cursor: pointer;
}

.search-btn {
  height: 36px;
  min-width: 46px;
  border-radius: 6px;
  border: none;
  padding: 0 14px;
  background: #0067c5;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: 0 0 auto;
}


@media (max-width: 840px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.hero-title {
		font-size: 24px;
	}

	.hero {
		padding-top: 34px;
	}

	.header-inner {
		flex-wrap: wrap;
		align-items: flex-start;
	}
	
	nav ul {
		gap: 14px;
		font-size: 12px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	
	.header-cta {
		order: 3;
		width: 100%;
		justify-content: space-between;
		text-align: left;
	}
	
	.footer-inner {
		grid-template-columns: 1fr;
		text-align: left;
	}
	
	.footer-right {
		text-align: left;
		align-items: flex-start;
	}
	
	.api-layout {
		grid-template-columns: 1fr;
	}
	
	.floating-cta {
		right: 12px;
		bottom: 12px;
	}
	/* ¸ð¹ÙÀÏ¿¡¼­´Â ¿À¸¥ÂÊ ¿©¹é Á¦°Å */
	.search-wrap {
    flex-wrap: wrap;
  }

  /* select´Â ÇÑ ÁÙ¿¡ 2°³¾¿ */
  .search-select {
    flex: 0 0 calc(50% - 6px);
    margin-bottom: 6px;
  }

  /* inputÀº ÇÑ ÁÙ ÀüÃ¼ */
  .search-input {
    flex: 0 0 100%;
    margin-bottom: 6px;
  }

  /* ¹öÆ°µµ ÇÑ ÁÙ ÀüÃ¼ */
  .search-btn {
    flex: 0 0 100%;
  }
}

/*--------------------------  
		¸ÞÀÎÆäÀÌÁö ÁÖ¿äÁ¤º¸
--------------------------*/

.section {
	padding: 10px 10px 15px;
}

.section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--navy);
	margin: 0;
}

.faq-title-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--navy);
	margin: 0;
}

.section-sub {
	font-size: 12px;
	color: #9ca3af;
	margin: 2px 0 0;
}

.section-link {
	font-size: 11px;
	color: var(--blue);
	cursor: pointer;
	white-space: nowrap;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.svc-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 18px 16px 16px;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(20,34,58,0.04);
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition:
	transform 0.18s ease,
	box-shadow 0.18s ease,
	border-color 0.18s ease,
	background 0.18s ease;
}

.svc-card:hover {
	background: #f9fbff;
	box-shadow: 0 10px 24px rgba(15, 35, 70, 0.16);
	transform: translateY(-3px);
	border-color: rgba(31,167,255,0.35);
}

.svc-card:active {
	transform: translateY(1px) scale(0.98);
	box-shadow: 0 4px 12px rgba(15, 35, 70, 0.18);
	border-color: rgba(255,158,87,0.6);
	background: #fff7f0;
}

.svc-card:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
}

.svc-label-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
}

.svc-label {
	font-size: 9px;
	color: var(--blue);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.svc-update {
  font-size: 9px;
  color: red;
  font-weight: 500;
  white-space: nowrap;
	margin-right: 12px;
}

.svc-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
}

.svc-desc {
	font-size: 11px;
	color: #6b7280;
	line-height: 1.5;
}

.svc-meta {
	font-size: 9px;
	color: #9ca3af;
	margin-top: 3px;
}

.svc-cta {
	margin-top: 6px;
	font-size: 10px;
	color: var(--accent);
	font-weight: 500;
	cursor: pointer;
}

.svc-dot {
	position: absolute;
	right: -16px;
	top: -16px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(31,167,255,0.45), transparent);
	opacity: 0.7;
}

/*--------------------------  
		¸ÞÀÎÆäÀÌÁö API¼­ºñ½º
--------------------------*/
.api-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
	gap: 20px;
}

.api-menu {
	background: #ffffff;
	border-radius: 14px;
	padding: 14px 12px;
	border: 1px solid rgba(20,34,58,0.06);
	box-shadow: 0 4px 16px rgba(15,35,70,0.06);
	font-size: 11px;
}

.api-menu-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}

.api-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.api-list li {
	padding: 7px 8px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	cursor: pointer;
	transition: background 0.15s ease, border 0.15s ease;
	border: 1px solid transparent;
}

.api-list li:hover {
	background: #f8fafc;
}

.api-list li.active {
	background: rgba(31,167,255,0.06);
	border: 1px solid rgba(31,167,255,0.25);
}

.api-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
}

.api-desc-mini {
	font-size: 10px;
	color: #6b7280;
}

.api-highlight-note {
	font-size: 11px;
	font-weight: 700;
	color: #b91c1c;
	margin-top: 6px;
}

.method-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 6px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 600;
	margin-right: 6px;
}

.method-get {
	background: rgba(34,197,94,0.09);
	color: #16a34a;
}

.api-detail {
	background: #ffffff;
	border-radius: 14px;
	padding: 16px 14px 14px;
	border: 1px solid rgba(20,34,58,0.06);
	box-shadow: 0 6px 18px rgba(15,35,70,0.06);
	font-size: 11px;
}

.api-detail-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 4px;
}

.api-detail-sub {
	color: #6b7280;
	margin-bottom: 10px;
}

.api-endpoint {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 10px;
	background: #0f172a;
	color: #e5e7eb;
	padding: 8px 10px;
	border-radius: 10px;
	margin-bottom: 10px;
	overflow-x: auto;
	white-space: nowrap;
}

.api-fields {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
	gap: 10px;
	margin-bottom: 10px;
}

.api-fields table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
}

.api-fields th,
.api-fields td {
	padding: 6px 8px;
	font-size: 10px;
	border-bottom: 1px solid #e5e7eb;
}

.api-fields th {
	background: #f3f4f6;
	text-align: left;
	color: #6b7280;
	font-weight: 500;
}

.api-fields tr:last-child td {
	border-bottom: none;
}

.api-note {
	font-size: 10px;
	color: #9ca3af;
	line-height: 1.5;
}

.api-cta {
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.btn-outline {
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(31,167,255,0.5);
	font-size: 10px;
	color: var(--blue);
	background: #fff;
	cursor: pointer;
}

.btn-ghost {
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px dashed rgba(148,163,184,0.9);
	font-size: 10px;
	color: #6b7280;
	background: #fff;
	cursor: pointer;
}

@media (max-width: 768px) {
  /* ÀüÃ¼ ¿©¹é Ãà¼Ò */
  .section {
    padding: 30px 16px 30px;
  }
  /* API Á¦¸ñ ¿µ¿ª Á¤·Ä */
  .section-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  /* ÀüÃ¼ ·¹ÀÌ¾Æ¿ôÀ» 1¿­·Î */
  .api-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  /* API ¸Þ´º ½ºÅ¸ÀÏ */
  .api-menu {
    padding: 16px;
  }
  .api-menu-title {
    font-size: 15px;
  }
  .api-list li {
    padding: 10px 12px;
    gap: 4px;
  }
  .api-name {
    font-size: 14px;
  }
  .api-desc-mini {
    font-size: 11px;
  }
  /* API »ó¼¼ ¿µ¿ª */
  .api-detail {
    padding: 16px;
    font-size: 12px;
  }

  .api-detail-title {
    font-size: 15px;
  }

  .api-detail-sub {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Endpoint ½ºÅ©·Ñ */
  .api-endpoint {
    font-size: 11px;
    padding: 10px;
  }

  /* ¿äÃ»¡¤ÀÀ´ä Å×ÀÌºíÀº ¸ð¹ÙÀÏ¿¡¼­ ½ºÅ©·Ñ */
  .api-fields {
    display: block;
  }

  .api-fields > div {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 12px;
  }

  .api-fields table {
    min-width: 460px;
    font-size: 11px;
  }
}


/*--------------------------  
				È°¿ë»ç·Ê
--------------------------*/
.usecases {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	font-size: 11px;
}

.use-card {
	background: #ffffff;
	padding: 14px 12px 12px;
	border-radius: 14px;
	border: 1px solid rgba(20,34,58,0.06);
	box-shadow: 0 4px 12px rgba(15,35,70,0.06);
}
/*
.use-card:hover {
	background: #f9fbff;
	box-shadow: 0 10px 24px rgba(15, 35, 70, 0.16);
	transform: translateY(-3px);
	border-color: rgba(31,167,255,0.35);
} */
.use-title {
	font-size: 12px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 4px;
}

.use-tag {
	display: inline-block;
	margin-bottom: 4px;
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(31,167,255,0.06);
	color: #2563eb;
	font-size: 9px;
}

.use-text {
	color: #6b7280;
	line-height: 1.5;
}

/*--------------------------  
				FAQ
--------------------------*/
.faq-grid {
	margin-top: 5px !important;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
	font-size: 11px;
}

.faq-item {
	background: #ffffff;
	border-radius: 14px;
	padding: 12px 12px 10px;
	border: 1px solid rgba(20,34,58,0.04);
	box-shadow: 0 3px 8px rgba(15,35,70,0.04);
}

.faq-q {
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 4px;
}

.faq-a {
	color: #6b7280;
	line-height: 1.5;
}

/*------------------------------------
	¹®ÀÇ ¼½¼Ç Æû + °øÁö»çÇ× + °í°´¼¾ÅÍ ·¹ÀÌ¾Æ¿ô
------------------------------------*/

.cs-form {
	max-width: 100%;
	width: 100%;
	display: grid;
	gap: 8px;
	font-size: 11px;
	margin-top: 8px;
}

.cs-form input,
.cs-form select,
.cs-form textarea {
	padding:10px 12px;
	border-radius:10px;
	border:1px solid #d1d5db;
	font-family: inherit;
	font-size: 11px;
}

.cs-form textarea {
	resize: vertical;
	min-height: 80px;
}

.cs-form button {
	margin-top:4px;
	width:180px;
	padding:10px 14px;
	border:none;
	border-radius:999px;
	background:var(--accent);
	color:#fff;
	font-size:11px;
	font-weight:600;
	cursor:pointer;
}

.notice-box {
	background: #f9fafb;
	border-radius: 14px;
	padding: 14px 12px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 3px 10px rgba(15,35,70,0.04);
	font-size: 11px;
	width: 100%;
}

.notice-title-main {
	text-align: left;
	margin: 0 0 8px;
	font-size: 16px;
}

.notice-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.notice-list li {
	padding-bottom: 6px;
	border-bottom: 1px dashed #e5e7eb;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.notice-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.notice-label {
	font-size: 10px;
	color: #6b7280;
}

.notice-text {
	font-size: 11px;
	color: #4b5563;
}

.notice-date {
	font-size: 9px;
	color: #9ca3af;
}

/* cs ¼½¼Ç: ¹®ÀÇ(40%) + °øÁö(30%) + °í°´¼¾ÅÍ(30%) */
#cs .section-title-wrap {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	margin-bottom: 16px;
	gap: 20px;
}

/* ¿ÞÂÊ: Á¦¸ñ + ¾È³»¹® + Æû (40%) */
#cs .cs-left {
	flex: 0 0 40%;
	max-width: 40%;
}

/* °¡¿îµ¥: °øÁö ºí·Ï (30%) */
#cs .notice-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 0;
	flex: 0 0 30%;
	max-width: 30%;
	margin-left: 0;
}

/* ¿À¸¥ÂÊ: °í°´¼¾ÅÍ (30%) */
#cs .cs-center {
	flex: 0 0 30%;
	max-width: 30%;
	display: flex;
	flex-direction: column;
}

.cs-center-box {
	background:#ffffff;
	border-radius:14px;
	padding:16px 14px 14px;
	border:1px solid #e5e7eb;
	box-shadow:0 4px 14px rgba(15,35,70,0.08);
	font-size:11px;
	width:100%;
}

.cs-center-title {
	font-size:14px;
	font-weight:600;
	color:#111827;
	margin-bottom:4px;
}

.cs-center-title span {
	font-size:11px;
	font-weight:400;
	color:#9ca3af;
	margin-left:6px;
}

.cs-center-phone {
	font-size:22px;
	font-weight:700;
	color:#111827;
	margin-bottom:10px;
}

.cs-center-list {
	list-style:none;
	padding:0;
	margin:0 0 12px;
	font-size:11px;
	color:#4b5563;
}

.cs-center-list li {
	display:flex;
	align-items:center;
	gap:6px;
	margin-bottom:4px;
}

.cs-center-list li:last-child {
	margin-bottom:0;
}

.cs-center-list .dot {
	font-size:6px;
	color:#6b7280;
}

.cs-center-btns {
	display:flex;
	flex-direction:column;
	gap:6px;
}

.cs-center-btn {
	width:100%;
	border-radius:8px;
	border:none;
	padding:10px 12px;
	font-size:12px;
	font-weight:600;
	cursor:pointer;
}

.cs-center-btn-primary {
	background:#111827;
	color:#ffffff;
}

.cs-center-btn-kakao {
	background:#ffe812;
	color:#111827;
}

@media (max-width: 768px) {

  /* ÀüÃ¼¸¦ ¼¼·Î 1¿­·Î */
  #cs .section-title-wrap {
    flex-direction: column !important;
  }

  /* 1. µ¥ÀÌÅÍ »ùÇÃ(¹®ÀÇ) */
  #cs .cs-left {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px;
  }

  /* 2. °øÁö»çÇ× */
  #cs .notice-block {
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px;
    margin-top: 20px;
  }

  /* 3. °í°´¼¾ÅÍ */
  #cs .cs-center {
    order: 3;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px;
    margin-top: 20px;
  }

  /* ³»ºÎ ¹Ú½ºµéµµ ÀüÃ¼Æø */
  .notice-box,
  .cs-center-box {
    width: 100% !important;
  }

  /* Æû ÀÔ·Âµµ 100% */
  .cs-form input,
  .cs-form select,
  .cs-form textarea,
  .cs-form button {
    width: 100% !important;
  }
}


/*--------------------------  
				·Î±×ÀÎ
--------------------------*/
.login-container {
	width: 90%;              /* ¹ÝÀÀÇü: È­¸éÀÇ 90%¸¸ »ç¿ë */
  max-width: 500px;        /* PC¿¡¼­´Â ÃÖ´ë 500px±îÁö¸¸ */
  text-align: center;
     /* ¸ð¹ÙÀÏ¿¡¼­µµ ¿©¹éÀÌ °úÇÏÁö ¾Ê°Ô */
  margin: 0 auto;
  box-sizing: border-box;  /* paddingÀ» ÀüÃ¼ Æø¿¡ Æ÷ÇÔ½ÃÄÑ ³ÑÄ§ ¹æÁö */
	padding: 50px;
}

.login-container h1 {
	font-size: 28px;
	margin-bottom: 20px;
}

.input3 {
	width: 100%;
	padding: 15px;
	margin: 10px 0;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

label {
	font-size: 14px;
}

#remember-me {
	margin-top: 10px;
	text-align: left;
	display: flex;
	align-items: center;
}

#remember-me input {
	margin-right: 5px;
}
     
.login-container button {
	background-color: #007bff;
	color: white;
	width: 100%; /* ·Î±×ÀÎ ¹öÆ°ÀÇ ÆøÀ» 100%·Î ¼³Á¤ÇÏ¿© ÀÎÇ²¹Ú½º¿Í µ¿ÀÏÇÏ°Ô ¸¸µì´Ï´Ù. */
	padding: 15px 0; /* ¹öÆ°ÀÇ »óÇÏ ¿©¹éÀ» Á¶ÀýÇÕ´Ï´Ù. */
	border: none;
	border-radius: 5px;
	cursor: pointer;
	box-sizing: border-box;
}

.links {
	margin-top: 20px;
	color: #939393;
	font-size: 10px;
}

.links a {
	margin: 0 10px;
	text-decoration: none;
	color: #939393;
	font-size: 12px;					
}

.divider {
	border-right: 1px solid #ccc;
	height: 14px;
	margin: 0 10px;
}

@media (max-width: 768px) {
  .login-container {
    width: 350px;          /* È­¸é Æø¿¡ ¸ÂÃã */
    padding: 30px 15px;  /* ¸ð¹ÙÀÏ ¿©¹é ÁÙÀÓ */
  }

  .input3, button {
    width: 100%;         /* ºÎ¸ð Æø¿¡ ¸ÂÃã */
    font-size: 14px;     /* ¸ð¹ÙÀÏ¿¡¼­ ±Û¾¾ Å©±â Á¶Á¤ */
    padding: 12px;
  }

  .links {
    font-size: 12px;
  }
}

/*--------------------------  
				PC Àü¿ë ½ºÅ¸ÀÏ
--------------------------*/
@media (min-width: 1025px) {
	.sidebar {
		display: none !important;
	}

	.menu {
		display: block;
	}

	.menu-toggle {
		display: none !important;
	}
	.card-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

/*-------------------------- 
				DB¼ö
--------------------------*/
.db-summary-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* ÁÙ¹Ù²Þ Çã¿ë */
  gap: 10px;
  justify-content: center;
  padding: 30px 10px;
}

.db-box {
  flex: 0 0 calc(50% - 10px); /* µÎ Ä­ Á¤·Ä */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
}

.db-box h3 {
  font-size: 14px;
  color: #005bab;
  margin-bottom: 8px;
}

.db-box p {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

/*-------------------------- 
		¸ÞÀÎÆäÀÌÁö °Ë»ö
--------------------------*/

.main-search {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.main-search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.main-search-container input[type="text"] {
  width: 400px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.main-search-container button {
  padding: 12px 18px;
  background-color: #005bab;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
	width: 100px;
}

.main-search-container select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
  width: 150px;
}

@media (max-width: 768px) {
  .main-search-container {
    flex-direction: column;
    align-items: stretch;
  }

	.selects {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ÇÑ ÁÙ¿¡ 2°³¾¿ */
    gap: 10px;
    width: 100%;
  }

  .main-search-container .selects {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .main-search-container .selects select {
    width: 100% !important;
    box-sizing: border-box;
  }

  .main-search-container input[type="text"] {
    width: 100%;
  }

  .main-search-container button {
    width: 100%;
  }
}
/*-------------------------- 
		¸ÞÀÎÆäÀÌÁö °øÁö»çÇ×
--------------------------*/

.notice-area {
	max-width: 1200px;
	margin: 60px auto;
	display: flex;
	gap: 40px;
	padding: 0 20px;
	flex-wrap: wrap;
}

.notice-board {
	flex: 1;
	min-width: 300px;
}

.notice-board h3 {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #000;
	padding-bottom: 8px;
	font-size: 18px;
}

.notice-board ul {
	list-style: none;
	margin-top: 10px;
}

.notice-board li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
	padding: 8px 0;
	font-size: 14px;
}

/*-------------------------- 
				ÁÖ¿ä ¼­ºñ½º ¿µ¿ª
--------------------------*/
.services {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 10px;
}

.services h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 26px;
	color: #005bab;
}

.service-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-box {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px 10px;
  text-align: center;
  background: #fff;
  min-width: 0;
}

/* ¾ÆÀÌÄÜ, ÅØ½ºÆ® Å©±â Á¶Á¤ */
.service-box i {
  font-size: 24px;
  color: #005bab;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-box h3 a {
  text-decoration: none;
}


.service-box:hover {
  border-color: #005bab;
  box-shadow: 0 4px 10px rgba(0, 91, 171, 0.2);
  transform: translateY(-5px);
  background-color: #f9fcff;
}

.db-summary-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* ÁÙ¹Ù²Þ Çã¿ë */
  gap: 10px;
  justify-content: center;
  padding: 10px 20px;
}

.db-box {
  flex: 0 0 calc(50% - 10px); /* µÎ Ä­ Á¤·Ä */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
}

.db-box h3 {
  font-size: 14px;
  color: #005bab;
  margin-bottom: 8px;
}

.db-box p {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.db-table {
  padding: 20px 30px;
}

.table-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}

.db-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.db-table thead {
  background-color: #909090;
  color: #fff;
}

.db-table th, .db-table td {
  padding: 12px 10px;
  border: 1px solid #ddd;
  text-align: center;
  white-space: nowrap;
}

.db-table tbody tr:hover {
  background-color: #f1f1f1;
}
.table-title {
  max-width: 1200px;
  margin: 0 auto 10px;
}

.table-title h2 {
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

.table-title .count-text {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
  font-weight: normal;
}

.table-more {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #005bab;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s;
}

.more-btn:hover {
  background-color: #003f86;
}
/*-------------------------- 
				ÇªÅÍ ¿µ¿ª
--------------------------*/
/* =========================
       Footer
========================= */
footer {
  background: var(--navy);
  color: #9ca3af;
  padding: 26px 20px 24px;
  margin-top: 20px;
  font-size: 10px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 18px;
}

.footer-logo {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-links a {
  color: #9ca3af;
	text-decoration: none;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
}

.footer-right strong {
  color: #e5e7eb;
  font-size: 10px;
}

/* =========================
    Floating CTA (footer ³»ºÎ¿ë)
========================= */
.floating-cta {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  align-items: flex-end;   /*  ¿À¸¥ÂÊ Á¤·Ä ÇÙ½É */
}

.floating-cta button {
  border-radius: 999px;
  width: 250px;
  border: none;
  padding: 8px 14px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15,35,70,0.26);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-cta span {
  font-size: 9px;
  color: #9ca3af;
  background: rgba(15,23,42,0.9);
  border-radius: 999px;
  padding: 3px 8px;
}


@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-right {
    text-align: left;
  }

  .floating-cta {
    width: 100%;
    align-items: flex-start;
  }
}
/*-------------------------- 
	º´¿øDB ¸®½ºÆ® ¿µ¿ª
--------------------------*/
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}

/* °Ë»ö ¹Ú½º */
.search-box {
	display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.search-input {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.search-input input[type="text"] {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
	width: 600px;
}

.search-input button {
  padding: 10px 16px;
  font-size: 14px;
  background-color: #005bab;
  color: #fff;
  border: none !important;
  border-radius: 5px;
  cursor: pointer;
}

.search-input button:hover {
  background-color: #003f86;
}

/* ¼¿·ºÆ® ¹Ú½º */
.selects {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.selects select {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.section-title1 {
	font-size: 20px;
	font-weight: bold;

}
.section-title1 .count-text {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
  font-weight: normal;
}

/* Ä«µå ¸®½ºÆ® */
.card-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.card {
	text-align: left;
}

.card img {
	width: 100%;
	height: 40%;
	border-radius: 8px;
}

.card .subject {
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
	color: #333;
	text-align: left;
}
    
.card .date {
	font-size: 12px;
	color: #777;
	margin-top: 4px;
}

.card .count {
	margin-top: 8px;
	font-size: 14px;
	color: #000;
}

.price {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  text-decoration: line-through;
}

.real-price {
  font-size: 14px;
  color: #000;
  font-weight: bold;
  margin-top: 2px;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.pagination a:hover {
  background-color: #005bab;
  color: #fff;
  border-color: #005bab;
}

.pagination a.active {
  background-color: #005bab;
  color: #fff;
  font-weight: bold;
  border-color: #005bab;
}

.btn-map {
	display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, #1e90ff 0%, #0066cc 100%); /* ºí·ç °è¿­ ±×¶óµ¥ÀÌ¼Ç */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  line-height: 1;
}

/*-------------------------- 
	º´¿øDB »ó¼¼
--------------------------*/


.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.product-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.product-image {
  flex: 1 1 50%;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  height: 500px;
  border-radius: 8px;
}

.product-details {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-details h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.product-details .price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-details .real-price {
  font-size: 20px;
  font-weight: bold;
  color: #e60000;
  margin-top: 6px;
}

.product-details .details {
  margin-top: 24px;
  line-height: 1.8;
  font-size: 15px;
}

.product-details .details div {
  margin-bottom: 12px;
}

/* Áö¿ª¼±ÅÃ Ãß°¡ ½ºÅ¸ÀÏ */
.region-select {
  margin-top: 15px;
  font-size: 15px;
}
.region-select label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}
.region-select select {
  width: 100%;  
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.total-price {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  color: #000;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.button-group button {
  flex: 1;
  height: 48px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.btn-cart {
  background-color: #04589c;
  color: white;
  border: 1px solid #04589c;
}

.btn-wish {
  background-color: white;
  color: #04589c;
  border: 1px solid #04589c;
}

/* ¸ð¹ÙÀÏ ´ëÀÀ */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }

  .button-group {
    flex-wrap: wrap;
    gap: 10px;
  }

  .button-group button {
    width: calc(50% - 5px); /* µÎ ¹öÆ°ÀÌ ÇÑ ÁÙ¿¡ µé¾î°¡µµ·Ï */
  }

  .product-details {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 20px;
  }
}

.tab-container {
  margin-top: 40px;
  border-top: 2px solid #ccc;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}

.tab-buttons button {
  flex: 1;
  padding: 12px;
  background-color: #f9f9f9;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-buttons button.active {
  background-color: #fff;
  border-bottom: 2px solid #04589c;
  color: #04589c;
}

.tab-content {
  display: none;
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.8;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.sample-download {
  margin-top: 30px;
  text-align: center;
	margin-bottom: 30px;
}

.sample-download a {
  display: inline-block;
  background-color: #04589c;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.sample-download a:hover {
  background-color: #033e73;
}

.sample-image {
  margin-top: 20px;
  text-align: center;
}

.sample-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 10px;
}

/*-------------------------- 
	¾à±¹,ÀÇ¾àÇ°µµ¸Å DB ¸®½ºÆ® ¿µ¿ª
--------------------------*/
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.pharmacy-table {
  width: 100%;
  min-width: 700px;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
	overflow-x: auto;
}

.pharmacy-table th, .pharmacy-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.pharmacy-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.pharmacy-table td {
  background-color: #fff;
}

@media (max-width: 1024px) {
	.card-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.card .subject {
		font-size: 15px;
	}
	.search-input input[type="text"] {
    width: 335px;
  }	
}
/*-------------------------- 
				°Ô½ÃÆÇ ¿µ¿ª
--------------------------*/
.divClass {
	width: 100%;
	height: 50px;
	background-color: white;
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-bar {
	width: 100%; 
	max-width: 1200px; 
	display: flex;
	justify-content: flex-start; 
	margin: 0 auto; 
}

.menu-item {
	text-align: center;
	line-height: 50px;
	border-right: 1px solid #ddd;
	color: #000;
}

.menu-item a {
	text-decoration: none;
	font-size: 0.9em;
	color: inherit;
}

.menu-item a:hover {
	text-decoration: none;
	color: blue;
}

.menu-item:first-child {
	border-left: 1px solid #ddd;
}

.menu-item:last-child {
	border-right: 1px solid #ddd;
}

.first-menu {
	width: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.first-menu img {
	width: 20px;
	height: 20px;
}

.search-bar {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 10px auto;
}

.search-bar select {
	padding: 5px;
	margin-left: 5px;
	margin-right: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 0.9em;
}

.search-bar input {
	padding: 5px;
	margin-right: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 0.9em;
}

.search-bar a {
	padding: 5px 10px;
	background-color: #007BFF;
	color: white;
	border-radius: 3px;
	text-decoration: none;
	font-size: 0.9em;
}

.search-bar a:hover {
	background-color: #0056b3;
}

.notice-title-wrap {	
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	border-collapse: collapse;
	font-size: 2.0em;
	font-weight: bold;
	text-align: center;

}

.notice-table {
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	border-collapse: collapse;
	font-size: 0.9em;
}

.notice-table th {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.notice-table th, .notice-table td {
	padding: 10px;
	text-align: center;
	font-size: 1em;
}

.notice-table th {
	background-color: #f5f5f5;
}

.notice-table tr {
	border-bottom: 1px solid #ddd;
}

.notice-table td {
	border: none; /* Å×µÎ¸®¸¦ ¿ÏÀüÈ÷ Á¦°Å */
}

.notice-table a {
    text-decoration: none;
		color: inherit;
}

.notice-table th:nth-child(1) { width: 10%; }
.notice-table th:nth-child(2) { width: 60%; }
.notice-table th:nth-child(3) { width: 15%; }
.notice-table th:nth-child(4) { width: 15%; }

.notice-table td:nth-child(1) { width: 10%; }
.notice-table td:nth-child(2) { width: 60%; text-align: left; }
.notice-table td:nth-child(3) { width: 15%; }
.notice-table td:nth-child(4) { width: 15%; }

.register-button {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: flex-end;
	margin: 10px auto;
}

.register-button a {
	padding: 5px 10px;
	background-color: #007BFF;
	color: white;
	text-decoration: none;
	border-radius: 3px;
	font-size: 0.9em;
}

.register-button a:hover {
	background-color: #0056b3;
}

.content-list {
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	border-collapse: collapse;
	font-size: 1em;
}

.content-list th {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.content-list th, .content-list td {
	padding: 10px;
	text-align: left;
	font-size: 0.9em;
}

.content-list th {
	background-color: #f5f5f5;
}

.content-list tr {
	border-bottom: 1px solid #ddd;
}

.content-list td {
	border: none; /* Å×µÎ¸®¸¦ ¿ÏÀüÈ÷ Á¦°Å */
}

.action-buttons {
	text-align: center;
	margin: 20px 0;
}

.action-buttons a {
	display: inline-block;
	margin-right: 10px;
	padding: 8px 15px;
	border-radius: 3px;
	text-decoration: none;
	color: white;
	font-size: 0.9em;
}

.action-buttons .edit {
	background-color: #007BFF;
}

.action-buttons .delete {
	background-color: #FF6B6B;
}

.action-buttons .list {
	background-color: #6C757D;
}

.action-buttons .comment {
	background-color: #28A745;
}

.action-buttons a.delete {
	background-color: #dc3545; /* ºÓÀº»ö ¹è°æ */
}

.action-buttons a.delete:hover {
    background-color: #c82333; /* Á¶±Ý ´õ ¾îµÎ¿î ºÓÀº»ö */
}

.action-buttons a:last-child {
	margin-right: 0;
}


/*-------------------------- 
	Àå¹Ù±¸´Ï ¿µ¿ª
--------------------------*/

.cart-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Malgun Gothic', sans-serif;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  min-width: 800px;  /* Å×ÀÌºí ÃÖ¼Ò ³Êºñ ¼³Á¤ (ÄÃ·³ À¯Áö) */
}

.cart-wrapper h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Å×ÀÌºí ±âº» ½ºÅ¸ÀÏ */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #000;
  border-bottom: 1px solid #ddd;
}

.cart-table th {
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  padding: 12px;
  background: #f9f9f9;
}

.cart-table td {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  padding: 12px;
}

/* ÁÂ¿ì ¶óÀÎ Á¶Á¤ */
.cart-table td:first-child {
  border-right: none;
}

.cart-table td.product-name {
  text-align: left;
  padding-left: 10px;
}

/* ¼ö·® ¿µ¿ª */
.quantity-inner {
  display: inline-flex; /* ÇÙ½É: inline-flex·Î Áß¾Ó Á¤·Ä ¹®Á¦ ÇØ°á */
  align-items: center;
  justify-content: center;
  gap: 6px;
  vertical-align: middle;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: #005bab;
  color: #fff;
}

.qty-input {
  width: 40px;
  height: 28px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
}

/* ÃÑÇÕ ¿µ¿ª */
.total-box {
  text-align: right;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

/* ¹öÆ° ¿µ¿ª */
.button-area {
  text-align: right;
  margin-top: 10px;
}

.button-area a {
  display: inline-block;
  background: #005bab;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 8px;
}

.button-area a:nth-child(1) {
  background: #fff;
	border: 1px solid #ddd;
	color: #696969;
}

.button-area a:nth-child(2) {
  background: #0072ce; /* ¼±ÅÃ»óÇ°ÁÖ¹® */
}

.button-area a:nth-child(3) {
  background: #009688; /* ÀüÃ¼»óÇ°ÁÖ¹® */
}

.btn-delete {
  display: inline-block;
  padding: 6px 12px;
  background: #ff4d4f;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #d9363e;
  transition: all 0.2s ease;
}

.btn-delete:hover {
  background: #d9363e;
  border-color: #b02a33;
}


td.quantity {
  text-align: center;
  vertical-align: middle;
}

td.quantity .quantity-inner {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  vertical-align: middle !important;
}

/* ¹öÆ° ÃÊ±âÈ­ */
td.quantity .qty-btn {
  all: unset; /* ´Ù¸¥ CSS ÃÊ±âÈ­ */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 28px !important;
  height: 28px !important;
  border: 1px solid #ccc !important;
  background: #f9f9f9 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

/* input ÃÊ±âÈ­ */
td.quantity .qty-input {
  all: unset; /* ´Ù¸¥ CSS ÃÊ±âÈ­ */
  display: inline-block !important;
  width: 40px !important;
  height: 28px !important;
  text-align: center !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  background: #fff !important;
  font-size: 14px !important;
  line-height: normal !important;
  box-sizing: border-box !important;
}

/* ¸ð¹ÙÀÏ ´ëÀÀ */
@media (max-width: 768px) {
  td.quantity .quantity-inner {
    gap: 4px !important;
  }
  td.quantity .qty-btn {
    width: 26px !important;
    height: 26px !important;
    font-size: 14px !important;
  }
  td.quantity .qty-input {
    width: 36px !important;
    height: 26px !important;
    font-size: 13px !important;
  }
}

