*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
	padding: 0 !important;
	font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1b1d22;
	background: #f3f1ec;
}

body {
	overflow-x: hidden;
}

button,
input,
select,
textarea {
	font: inherit;
}

a {
	color: inherit;
}

.admin_shell {
	display: grid;
	grid-template-columns: 276px minmax(0, 1fr);
	min-height: 100vh;
	background:
		linear-gradient(135deg, rgba(201, 154, 81, 0.08), rgba(255, 255, 255, 0) 34%),
		#f3f1ec;
}

.admin_sidebar {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 22px;
	background: #181511;
	color: #fff;
	border-right: 1px solid rgba(201, 154, 81, 0.28);
}

.admin_brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 56px;
	color: #fff;
	text-decoration: none;
}

.admin_brand_mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: #c99a51;
	color: #181511;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.admin_brand_text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.admin_brand_text strong {
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.admin_brand_text small {
	color: #c9c0b4;
	font-size: 0.82rem;
	line-height: 1.2;
}

.admin_nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin_nav_label {
	margin: 0 0 4px;
	color: #a79d91;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.admin_nav_item {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 64px;
	padding: 11px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 8px;
	color: #ded8cf;
	text-decoration: none;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.admin_nav_item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(201, 154, 81, 0.42);
	color: #fff;
}

.admin_nav_item.active {
	background: #fff;
	border-color: #c99a51;
	color: #181511;
}

.admin_nav_icon {
	flex: 0 0 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(201, 154, 81, 0.16);
	color: #c99a51;
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.admin_nav_item.active .admin_nav_icon {
	background: #181511;
	color: #c99a51;
}

.admin_nav_item span:last-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.admin_nav_item strong {
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.25;
}

.admin_nav_item small {
	color: inherit;
	opacity: 0.7;
	font-size: 0.78rem;
	line-height: 1.25;
	word-break: keep-all;
}

.admin_sidebar_note {
	padding: 16px;
	border: 1px solid rgba(201, 154, 81, 0.28);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.admin_sidebar_note span {
	display: block;
	margin-bottom: 7px;
	color: #c99a51;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.admin_sidebar_note strong {
	display: block;
	color: #fff;
	font-size: 1rem;
	line-height: 1.35;
	word-break: keep-all;
}

.admin_sidebar_note p {
	margin: 9px 0 0;
	color: #c9c0b4;
	font-size: 0.84rem;
	line-height: 1.55;
	word-break: keep-all;
}

.admin_sidebar_footer {
	display: grid;
	gap: 9px;
	margin-top: auto;
}

.admin_site_button,
.admin_logout_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.admin_site_button {
	border: 0;
	background: #c99a51;
	color: #181511;
}

.admin_site_button:hover {
	background: #d9ad66;
}

.admin_logout_button {
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	color: #e7dfd2;
}

.admin_logout_button:hover {
	border-color: rgba(255, 255, 255, 0.42);
	color: #fff;
}

.admin_main {
	min-width: 0;
}

.admin_topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 78px;
	padding: 16px 28px;
	border-bottom: 1px solid #e4dfd6;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
}

.admin_topbar_title_group {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.admin_topbar_kicker {
	color: #9a6a2f;
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.admin_topbar_title_group strong {
	color: #17191f;
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin_topbar_util {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.admin_count_chip,
.admin_user_chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid #e0d8cc;
	border-radius: 8px;
	background: #fff;
}

.admin_count_chip span,
.admin_user_chip small {
	color: #71675b;
	font-size: 0.78rem;
	font-weight: 700;
}

.admin_count_chip strong,
.admin_user_chip span {
	color: #17191f;
	font-size: 0.92rem;
	font-weight: 900;
}

.admin_user_chip span,
.admin_user_chip small {
	display: block;
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.content-area {
	width: 100%;
	min-width: 0;
	padding: 28px;
}

input[type="text"],
input[type="button"] {
	box-sizing: border-box;
}

.type4-button {
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #e3c6c2;
	background: #fff;
	color: #a23b32;
	border-radius: 6px;
	font-size: 0.88rem;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.18s ease;
}

.type4-button:hover {
	background: #b42318;
	color: #fff;
	border-color: #b42318;
}

.swal2-popup {
	border-radius: 8px !important;
	font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif !important;
}

.swal2-confirm,
.swal2-cancel {
	border-radius: 6px !important;
	box-shadow: none !important;
}

.swal2-confirm {
	background: #17191f !important;
}

.toast-bottom-center.custom {
	bottom: 24px;
}

body.swal2-shown,
body.swal2-height-auto {
	height: auto !important;
	overflow-y: auto !important;
	padding-right: 0 !important;
}

body.parcelout_login_body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(201, 154, 81, 0.14), rgba(255, 255, 255, 0) 34%),
		linear-gradient(315deg, rgba(24, 21, 17, 0.08), rgba(255, 255, 255, 0) 42%),
		#f3f1ec;
}

.parcelout_login_shell {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	width: min(1080px, 100%);
	min-height: 640px;
	overflow: hidden;
	border: 1px solid #e4dfd6;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(24, 21, 17, 0.14);
}

.parcelout_login_intro {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 36px;
	min-width: 0;
	padding: 42px;
	color: #fff;
	background:
		linear-gradient(160deg, rgba(201, 154, 81, 0.34), rgba(201, 154, 81, 0) 46%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0)),
		#181511;
}

.parcelout_login_brand {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	color: #fff;
	text-decoration: none;
}

.parcelout_login_mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 8px;
	background: #c99a51;
	color: #181511;
	font-size: 0.94rem;
	font-weight: 900;
}

.parcelout_login_brand strong,
.parcelout_login_brand small {
	display: block;
}

.parcelout_login_brand strong {
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.25;
}

.parcelout_login_brand small {
	margin-top: 4px;
	color: #c9c0b4;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.25;
}

.parcelout_login_copy {
	position: relative;
	z-index: 1;
	max-width: 500px;
}

.parcelout_login_copy span,
.parcelout_login_panel_head span {
	display: block;
	color: #c99a51;
	font-size: 0.78rem;
	font-weight: 900;
}

.parcelout_login_copy h1 {
	margin: 12px 0 16px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 900;
	line-height: 1.12;
	word-break: keep-all;
}

.parcelout_login_copy p {
	margin: 0;
	max-width: 430px;
	color: #d8d0c5;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.65;
	word-break: keep-all;
}

.parcelout_login_points {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 430px;
}

.parcelout_login_points div {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: 12px;
	border: 1px solid rgba(201, 154, 81, 0.28);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
}

.parcelout_login_points strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(201, 154, 81, 0.17);
	color: #c99a51;
	font-size: 0.74rem;
	font-weight: 900;
}

.parcelout_login_points span {
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.25;
}

.parcelout_login_panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 54px;
	background: #fff;
}

.parcelout_login_panel_head {
	margin-bottom: 28px;
}

.parcelout_login_panel_head h2 {
	margin: 8px 0 8px;
	color: #17191f;
	font-size: 1.72rem;
	font-weight: 900;
	line-height: 1.25;
}

.parcelout_login_panel_head p {
	margin: 0;
	color: #71675b;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.5;
	word-break: keep-all;
}

.parcelout_login_form {
	display: grid;
	gap: 18px;
}

.parcelout_login_field {
	display: grid;
	gap: 8px;
}

.parcelout_login_field label {
	color: #2b2f38;
	font-size: 0.9rem;
	font-weight: 800;
}

.parcelout_login_field input {
	width: 100%;
	min-height: 52px;
	padding: 0 15px;
	border: 1px solid #d9d2c8;
	border-radius: 8px;
	background: #fbfaf8;
	color: #17191f;
	font-size: 1rem;
	font-weight: 700;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.parcelout_login_field input:focus {
	border-color: #c99a51;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(201, 154, 81, 0.16);
}

.parcelout_login_check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: #5e564d;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
}

.parcelout_login_check input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #c99a51;
	cursor: pointer;
}

.parcelout_login_submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	margin-top: 4px;
	border: 0;
	border-radius: 8px;
	background: #17191f;
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease;
}

.parcelout_login_submit:hover {
	background: #2c313b;
	transform: translateY(-1px);
}

.parcelout_login_submit:disabled {
	opacity: 0.62;
	cursor: wait;
	transform: none;
}

@media (max-width: 1024px) {
	.admin_shell {
		grid-template-columns: 232px minmax(0, 1fr);
	}

	.admin_sidebar {
		padding: 18px;
	}

	.parcelout_login_shell {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.parcelout_login_intro {
		min-height: 360px;
	}
}

@media (max-width: 768px) {
	.admin_shell {
		display: block;
		min-height: 100vh;
	}

	.admin_sidebar {
		position: relative;
		height: auto;
		gap: 14px;
		padding: 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(201, 154, 81, 0.28);
	}

	.admin_brand {
		min-height: 46px;
	}

	.admin_brand_mark {
		width: 44px;
		height: 44px;
	}

	.admin_nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.admin_nav_label {
		grid-column: 1 / -1;
	}

	.admin_nav_item {
		min-height: 70px;
		align-items: flex-start;
	}

	.admin_sidebar_note {
		display: none;
	}

	.admin_sidebar_footer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.admin_topbar {
		position: relative;
		align-items: flex-start;
		flex-direction: column;
		min-height: 0;
		padding: 16px;
	}

	.admin_topbar_util {
		width: 100%;
	}

	.admin_count_chip,
	.admin_user_chip {
		flex: 1 1 0;
		justify-content: space-between;
		min-width: 0;
	}

	.admin_user_chip {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 2px;
	}

	.content-area {
		padding: 16px;
	}

	.swal2-popup {
		width: 90% !important;
		max-width: 90% !important;
		font-size: 14px !important;
		padding: 1.2em !important;
	}

	.swal2-html-container {
		font-size: 15px !important;
		word-break: keep-all;
		overflow-wrap: break-word;
	}

	.swal2-title {
		font-size: 16px !important;
	}

	.swal2-actions {
		flex-direction: column !important;
		gap: 10px;
	}

	.swal2-confirm,
	.swal2-cancel {
		width: 100% !important;
		font-size: 14px !important;
	}

	body.parcelout_login_body {
		align-items: flex-start;
		padding: 16px;
	}

	.parcelout_login_intro,
	.parcelout_login_panel {
		padding: 28px;
	}

	.parcelout_login_intro {
		min-height: 320px;
	}

	.parcelout_login_copy h1 {
		font-size: 2rem;
	}

	.parcelout_login_points {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.admin_nav {
		grid-template-columns: 1fr;
	}

	.admin_sidebar_footer {
		grid-template-columns: 1fr;
	}

	.admin_topbar_util {
		flex-direction: column;
		align-items: stretch;
	}

	.parcelout_login_intro,
	.parcelout_login_panel {
		padding: 22px;
	}

	.parcelout_login_brand {
		align-items: flex-start;
	}

	.parcelout_login_mark {
		width: 48px;
		height: 48px;
	}
}
