@charset "utf-8";

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
	font-size: 14px;
	color: #1f2024;
	background: #e9eaee;
}

body {
	overflow: hidden;
	overscroll-behavior: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration: none;
}

.blind {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.site-background {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 100dvh;
	background: #e9eaee;
	overflow: hidden;
}

.mobile-frame {
	position: relative;
	width: 100%;
	height: 100dvh;
	background: #fff;
	overflow-x: hidden;
	overflow-y: auto;
}

@media (min-width: 600px) {
	.site-background {
		align-items: center;
		height: 100vh;
		padding: 0;
	}

	.mobile-frame {
		width: 430px;
		height: min(932px, 100vh);
		min-height: 0;
		max-height: 932px;
		border-radius: 28px;
		box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
	}
}

.brand-logo-area {
	position: relative;
	display: flex;
	align-items: center;
	overflow: visible;
}

.brand-logo-image {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}


.brand-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	font-size: 20px;
	font-weight: 800;
	font-style: italic;
	letter-spacing: -0.04em;
	color: #20366d;
}

.brand-logo-placeholder::before,
.brand-logo-placeholder::after {
	content: "";
	position: absolute;
	left: 0;
	width: 95px;
	height: 12px;
	border-radius: 100% 0 100% 0;
	opacity: 0.46;
}

.brand-logo-placeholder::before {
	top: -13px;
	background: linear-gradient(90deg, #25b3c5, #7ee4b0);
	transform: skewY(-8deg);
}

.brand-logo-placeholder::after {
	top: 0;
	background: linear-gradient(90deg, #42c4d0, #50c7d5);
	transform: skewY(-4deg);
}

.brand-logo-area-large {
	width: 123px;
	height: 57px;
	margin-bottom: 34px;
}

.brand-logo-area-small {
	width: 98px;
	height: 36px;
}

/* 로그인 */
.login-frame {
	background: #fff;
	overflow: hidden;
}

.login-page {
	height: 100%;
	min-height: 0;
	padding: 0 24px;
	background: #fff;
	overflow: hidden;
}

.login-content {
	padding-top: 176px;
}

.login-brand-block {
	margin-bottom: 74px;
}

.login-title {
	margin: 0;
	font-size: 27px;
	font-weight: 300;
	line-height: 1.42;
	letter-spacing: -0.05em;
	color: #202124;
}

.login-title span,
.login-title strong {
	display: block;
}

.login-title strong {
	font-size: 37px;
	font-weight: 700;
	line-height: 1.2;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.basic-input-box {
	width: 100%;
	height: 62px;
	border: 1px solid #d7d8dd;
	border-radius: 10px;
	background: #fff;
}

.basic-input-box input {
	width: 100%;
	height: 100%;
	padding: 0 15px;
	border: 0;
	outline: 0;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #202124;
	background: transparent;
}

.basic-input-box input::placeholder {
	color: #a7aab2;
}

.save-id-check {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-top: -2px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #252629;
	cursor: pointer;
}

.save-id-check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.save-id-icon {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1.5px solid #121316;
	border-radius: 50%;
}

.save-id-icon::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	width: 7px;
	height: 4px;
	border-left: 1.8px solid #121316;
	border-bottom: 1.8px solid #121316;
	transform: rotate(-45deg);
}

.primary-button,
.dark-button {
	width: 100%;
	height: 56px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.primary-button {
	color: #a7aab2;
	background: #f4f5f7;
}

.primary-button.is-active,
.primary-button:not(:disabled) {
	color: #fff;
	background: #111318;
}

.login-submit-button {
	margin-top: 24px;
}

.login-link-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 38px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #222326;
}

.login-link-divider {
	width: 1px;
	height: 18px;
	background: #d9dbe0;
}

/* 공통 상단 */
.page-topbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 98px;
	padding: 42px 24px 0;
	background: #fff;
}

.topbar-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1f2024;
}

.topbar-back-button {
	position: absolute;
	left: 25px;
	bottom: 25px;
	width: 22px;
	height: 22px;
}

.topbar-back-button::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 14px;
	height: 14px;
	border-left: 3px solid #111318;
	border-bottom: 3px solid #111318;
	transform: rotate(45deg);
}

/* 가입신청 */
.signup-frame {
	background: #fff;
	overflow: hidden;
}

.signup-page {
	position: relative;
	height: 100%;
	min-height: 0;
	padding-bottom: 112px;
	background: #fff;
	overflow: hidden;
}

.signup-form {
	height: calc(100% - 98px);
	padding: 34px 24px 112px;
	overflow-y: auto;
}

.signup-form::-webkit-scrollbar {
	display: none;
}

.signup-form {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.stacked-input-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 76px;
	margin-bottom: 18px;
	padding: 12px 15px;
	border: 1px solid #d7d8dd;
	border-radius: 10px;
	background: #fff;
}

.stacked-input-label {
	margin-bottom: 9px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #676b74;
}

.stacked-input-box input {
	width: 100%;
	min-width: 0;
	height: 32px;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #202124;
	background: transparent;
}

.stacked-input-box input::placeholder {
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #a8abb3;
}

.inline-input-row {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.phone-input-box .inline-input-row input {
	width: 64px;
	text-align: center;
}

.phone-input-box .inline-input-row input:first-child {
	text-align: left;
}

.phone-dash {
	font-size: 20px;
	font-weight: 700;
	color: #a7aab2;
}

.verify-request-button {
	flex: 0 0 auto;
	height: 36px;
	margin-left: auto;
	padding: 0 14px;
	border-radius: 7px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
	background: #3165ee;
}

.verify-request-button:disabled {
	cursor: default;
	color: #a5a8b0;
	background: #f1f2f5;
}

.password-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.password-input-wrap input {
	padding-right: 42px;
}

.password-visibility-button {
	position: absolute;
	right: 0;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 17px;
	color: #9a9da5;
	transform: translateY(-50%);
}

.password-visibility-button:active {
	color: #202124;
}

.email-input-box input {
	padding-right: 8px;
}

.page-bottom-action {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	padding: 16px 24px 32px;
	background: linear-gradient(180deg, rgba(255,255,255,0), #fff 18%);
}

.dark-button {
	color: #fff;
	background: #17191e;
}

/* 예약현황 */
.app-frame {
	display: flex;
	flex-direction: column;
	background: #f5f6f8;
	overflow: hidden;
}

.has-bottom-navigation {
	padding-bottom: 0;
}

.reservation-page {
	flex: 1 1 auto;
	min-height: 0;
	padding: 0 19px 24px;
	background: #f5f6f8;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.reservation-page::-webkit-scrollbar {
	display: none;
}

.reservation-fixed-header {
	position: sticky;
	top: 0;
	z-index: 15;
	margin: 0 -19px 20px;
	padding: 16px 19px 0;
	background: #f5f6f8;
}

.reservation-main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 11px;
}

.filter-open-button {
	position: relative;
	width: 34px;
	height: 34px;
}

.filter-open-button::before,
.filter-open-button::after,
.filter-open-button span {
	content: "";
	position: absolute;
	width: 3px;
	height: 23px;
	border-radius: 99px;
	background: #202124;
}

.filter-open-button::before {
	left: 8px;
	top: 6px;
}

.filter-open-button::after {
	right: 8px;
	top: 6px;
}

.filter-open-button span {
	display: block;
}

.filter-open-button span:first-child {
	left: 4px;
	top: 12px;
	width: 11px;
	height: 11px;
	border: 3px solid #202124;
	border-radius: 50%;
	background: #f5f6f8;
	z-index: 2;
}

.filter-open-button span:last-child {
	right: 4px;
	top: 7px;
	width: 11px;
	height: 11px;
	border: 3px solid #202124;
	border-radius: 50%;
	background: #f5f6f8;
	z-index: 2;
}

.status-tab-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0 19px;
	overflow-x: auto;
	white-space: nowrap;
	border-bottom: 1px solid #e5e7eb;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.status-tab-list::-webkit-scrollbar {
	display: none;
}

.status-tab-item {
	position: relative;
	display: block;
	padding: 0 0 17px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #9b9da4;
}

.status-tab-item.is-active {
	color: #191b20;
}

.status-tab-item.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: #191b20;
}

.reservation-search-form {
	display: flex;
	align-items: center;
	width: 100%;
	height: 63px;
	margin-bottom: 20px;
	padding: 0 18px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(23, 25, 30, 0.04);
}

.reservation-search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: 0;
	outline: 0;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1f2024;
	background: transparent;
}

.reservation-search-form input[type="search"]::placeholder {
	color: #b0b3bb;
}

.reservation-search-button {
	position: relative;
	width: 32px;
	height: 32px;
}

.reservation-search-button::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	width: 16px;
	height: 16px;
	border: 3px solid #111318;
	border-radius: 50%;
}

.reservation-search-button::after {
	content: "";
	position: absolute;
	right: 4px;
	bottom: 5px;
	width: 12px;
	height: 3px;
	border-radius: 99px;
	background: #111318;
	transform: rotate(45deg);
}

.reservation-card-list {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.reservation-card,
.empty-card {
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(23, 25, 30, 0.04);
}

.empty-card {
	padding: 36px 20px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	color: #8d9098;
}

.reservation-card-link {
	display: block;
	padding: 17px 18px 17px;
}

.reservation-card-title-row {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 11px;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 30px;
	padding: 0 10px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.status-requested {
	color: #3679d8;
	background: #eef5ff;
}

.status-waiting {
	color: #16181c;
	background: #f1f3f5;
}

.status-done,
.status-confirmed {
	color: #00947b;
	background: #eaf7f5;
}

.status-rejected {
	color: #d9435d;
	background: #fff0f4;
}

.status-canceled {
	color: #fff;
	background: #4d5058;
}

.status-calculating {
	color: #676b74;
	background: #eff0f2;
}

.patient-name {
	flex: 1;
	min-width: 0;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #24252a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.card-arrow {
	position: relative;
	width: 15px;
	height: 22px;
}

.card-arrow::before {
	content: "";
	position: absolute;
	left: 1px;
	top: 4px;
	width: 11px;
	height: 11px;
	border-top: 3px solid #c6c8cf;
	border-right: 3px solid #c6c8cf;
	transform: rotate(45deg);
}

.patient-summary-row {
	display: flex;
	align-items: center;
	gap: 0;
	width: 100%;
	min-height: 32px;
	margin-bottom: 15px;
	padding: 0 9px;
	border: 1px solid #e6e7eb;
	border-radius: 5px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #4b4e55;
	white-space: nowrap;
}

.patient-summary-row span {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-width: 0;
	padding: 0 9px;
}

.patient-summary-row span:first-child {
	padding-left: 0;
}

.patient-summary-row span:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 13px;
	background: #d3d5db;
	transform: translateY(-50%);
}

.patient-flag {
	font-size: 14px;
}

.patient-meta-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.65fr 0.55fr 1.1fr;
	gap: 8px;
	margin-bottom: 11px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #62666f;
}

.meta-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.meta-item::before,
.calendar-icon,
.memo-icon {
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	opacity: 0.5;
	background: #cfd3da;
}

.meta-phone::before {
	border-radius: 50% 50% 50% 0;
	transform: rotate(-35deg);
}

.meta-gender::before {
	border-radius: 50%;
	background: transparent;
	border: 2px solid #cfd3da;
}

.meta-chat::before {
	border-radius: 50% 50% 4px 50%;
}

.meta-passport::before {
	border-radius: 2px;
}

.reservation-time-row {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #3d4047;
}

.calendar-icon {
	border-radius: 2px;
}

.reservation-memo-row {
	display: flex;
	align-items: center;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #eef0f3;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #42454d;
}

.memo-icon {
	width: 18px;
	height: 13px;
	border-radius: 50%;
}


/* 예약 상세 */
.reservation-detail-frame {
	background: #f5f6f8;
}

.reservation-detail-page {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #f5f6f8;
	overflow: hidden;
}

.reservation-detail-fixed-header {
	flex: 0 0 auto;
	background: #f5f6f8;
	border-bottom: 1px solid #edf0f4;
}

.reservation-detail-logo-header {
	height: 54px;
	margin-bottom: 0;
	padding: 14px 19px 6px;
}

.reservation-detail-topbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	background: #fff;
}

.reservation-detail-back-button {
	position: absolute;
	left: 19px;
	top: 50%;
	width: 25px;
	height: 25px;
	transform: translateY(-50%);
}

.reservation-detail-back-button::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 13px;
	height: 13px;
	border-left: 3px solid #17191e;
	border-bottom: 3px solid #17191e;
	transform: rotate(45deg);
}

.reservation-detail-title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	max-width: 72%;
}

.reservation-detail-title-wrap .status-badge {
	min-width: auto;
	height: 22px;
	padding: 0 8px;
	font-size: 11px;
}

.reservation-detail-title-wrap strong {
	min-width: 0;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.01em;
	color: #202124;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.reservation-detail-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

.reservation-detail-form {
	flex: 0 0 auto;
	max-height: 55%;
	padding: 14px 19px 16px;
	background: #fff;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.reservation-detail-form::-webkit-scrollbar {
	display: none;
}

.reservation-branch-tab-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 14px;
}

.reservation-branch-tab {
	height: 32px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #383b42;
	background: #f1f2f5;
}

.reservation-branch-tab.is-active {
	color: #fff;
	background: #3467f2;
}

.reservation-detail-action-row {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.reservation-detail-save-button {
	height: 24px;
	padding: 0 10px;
	border: 1px solid #d6d9df;
	border-radius: 12px;
	color: #2379dc;
	background: #fff;
}

.reservation-detail-cancel-button {
	color: #d63a45;
}

.reservation-detail-request-date {
	margin-left: auto;
	font-weight: 700;
	color: #8c9099;
}

.detail-field-list {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.detail-field-row {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	align-items: center;
	gap: 7px;
}

.detail-field-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: -0.05em;
	color: #5f636c;
}

.detail-field-label.is-required::after {
	content: "*";
	margin-left: 2px;
	color: #ef4b57;
}

.detail-text-input,
.detail-select-input {
	width: 100%;
	height: 37px;
	padding: 0 11px;
	border: 1px solid #d9dbe0;
	border-radius: 5px;
	outline: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #25272d;
	background: #fff;
}

.detail-text-input::placeholder {
	color: #b4b7bf;
}

.detail-select-input {
	padding-right: 30px;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #8f939d 50%), linear-gradient(135deg, #8f939d 50%, transparent 50%);
	background-position: calc(100% - 17px) 16px, calc(100% - 12px) 16px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.detail-inline-control-group {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	gap: 8px;
}

.detail-date-input-wrap,
.detail-time-input-wrap {
	position: relative;
}

.detail-date-input-wrap .detail-text-input,
.detail-time-input-wrap .detail-text-input {
	padding-right: 31px;
}

.detail-calendar-icon,
.detail-time-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	width: 13px;
	height: 13px;
	border: 2px solid #a9adb5;
	border-radius: 2px;
	transform: translateY(-50%);
	pointer-events: none;
}

.detail-calendar-icon::before {
	content: "";
	position: absolute;
	left: -2px;
	top: 3px;
	width: 13px;
	height: 2px;
	background: #a9adb5;
}

.detail-time-icon {
	border-radius: 50%;
}

.detail-time-icon::before,
.detail-time-icon::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 3px;
	width: 2px;
	height: 5px;
	background: #a9adb5;
}

.detail-time-icon::after {
	left: 5px;
	top: 6px;
	width: 4px;
	height: 2px;
}

.birth-check-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 37px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #61656f;
	white-space: nowrap;
}

.birth-check-label input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.birth-check-icon {
	position: relative;
	width: 14px;
	height: 14px;
	border: 1.5px solid #c4c7ce;
	border-radius: 50%;
}

.birth-check-label input:checked + .birth-check-icon {
	border-color: #3467f2;
	background: #3467f2;
}

.birth-check-label input:checked + .birth-check-icon::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 3px;
	width: 5px;
	height: 3px;
	border-left: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	transform: rotate(-45deg);
}

.detail-comment-section {
	margin: 17px -19px -16px;
	padding: 19px;
	border-top: 8px solid #f5f6f8;
	background: #fff;
}

.detail-section-title {
	display: block;
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #626670;
}

.detail-comment-textarea {
	width: 100%;
	height: 76px;
	padding: 12px;
	border: 1px solid #d9dbe0;
	border-radius: 5px;
	outline: 0;
	resize: none;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.03em;
	color: #25272d;
}

.detail-comment-textarea::placeholder {
	color: #b4b7bf;
}

.reservation-log-section {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 13px 19px 0;
	background: #f5f6f8;
}

.reservation-log-title {
	flex: 0 0 auto;
	margin-bottom: 10px;
}

.reservation-log-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 0 0 13px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.reservation-log-scroll::-webkit-scrollbar {
	display: none;
}

.reservation-log-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 13px;
}

.reservation-log-row.is-right {
	align-items: flex-end;
}

.reservation-log-writer {
	margin: 0 5px 3px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #a3a6ad;
}

.reservation-log-card {
	width: 196px;
	max-width: 84%;
	border-radius: 8px 8px 4px 4px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 14px rgba(23, 25, 30, 0.05);
}

.reservation-log-card.is-message-card {
	width: 214px;
}

.reservation-log-card-header {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 25px;
	padding: 0 10px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
}

.log-card-gray .reservation-log-card-header {
	background: #8a8d92;
}

.log-card-green .reservation-log-card-header {
	background: #008c81;
}

.reservation-log-card-header time {
	font-size: 10px;
	font-weight: 900;
	white-space: nowrap;
}

.reservation-log-card-body {
	padding: 10px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.03em;
	color: #4c5058;
	background: #fff;
}

.reservation-log-patient-name {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.01em;
	color: #282a30;
}

.reservation-log-info-list {
	margin: 0;
}

.reservation-log-info-list div {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 8px;
}

.reservation-log-info-list dt {
	color: #8a8e97;
}

.reservation-log-info-list dd {
	margin: 0;
	text-align: right;
	color: #555963;
}

.reservation-log-comment {
	margin-top: 9px;
	padding-top: 8px;
	border-top: 1px solid #e8eaee;
}

.reservation-log-comment span {
	display: block;
	margin-bottom: 4px;
	font-size: 10px;
	font-weight: 900;
	color: #565a63;
}

.reservation-log-comment p {
	margin: 0;
	padding: 7px 9px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: -0.04em;
	color: #008c81;
	background: #effafa;
}

.reservation-log-message-text {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: -0.04em;
	color: #3e4149;
}

.reservation-log-input-form {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin: 0 -19px;
	padding: 9px 19px 12px;
	border-top: 1px solid #edf0f3;
	background: #f5f6f8;
}

.reservation-log-input-form textarea {
	flex: 1;
	min-width: 0;
	height: 40px;
	max-height: 92px;
	padding: 12px 13px;
	border: 0;
	border-radius: 9px;
	outline: 0;
	resize: none;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.04em;
	color: #25272d;
	background: #fff;
	box-shadow: 0 4px 14px rgba(23, 25, 30, 0.04);
}

.reservation-log-input-form textarea::placeholder {
	color: #aeb2ba;
}

.reservation-log-send-button {
	position: relative;
	flex: 0 0 auto;
	width: 36px;
	height: 40px;
}

.reservation-log-send-button::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 9px;
	width: 16px;
	height: 16px;
	border-top: 3px solid #1a1c21;
	border-right: 3px solid #1a1c21;
	transform: rotate(45deg) skew(-8deg, -8deg);
}

.reservation-log-send-button::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 18px;
	width: 21px;
	height: 3px;
	border-radius: 99px;
	background: #1a1c21;
}

/* 하단 메뉴 */
.bottom-navigation {
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
	flex: 0 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	height: 78px;
	padding: 7px 0 env(safe-area-inset-bottom);
	border-top: 1px solid #eef0f3;
	background: #fff;
	z-index: 30;
}

.bottom-navigation-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: -0.05em;
	color: #989ca5;
}

.bottom-navigation-link.is-active {
	color: #191b20;
}

.bottom-navigation-icon {
	position: relative;
	display: block;
	width: 26px;
	height: 24px;
	color: currentColor;
}

.bottom-navigation-icon::before,
.bottom-navigation-icon::after {
	content: "";
	position: absolute;
	border-color: currentColor;
	background: currentColor;
}

.icon-reservation::before {
	left: 4px;
	top: 3px;
	width: 16px;
	height: 16px;
	border: 3px solid currentColor;
	border-radius: 2px;
	background: transparent;
}

.icon-reservation::after {
	right: 2px;
	top: 0;
	width: 8px;
	height: 8px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	background: transparent;
}

.icon-signup::before {
	left: 4px;
	bottom: 2px;
	width: 15px;
	height: 10px;
	border: 3px solid currentColor;
	border-radius: 10px 10px 2px 2px;
	background: transparent;
}

.icon-signup::after {
	left: 8px;
	top: 1px;
	width: 8px;
	height: 8px;
	border: 3px solid currentColor;
	border-radius: 50%;
	background: transparent;
}

.icon-notice::before {
	left: 2px;
	top: 7px;
	width: 20px;
	height: 10px;
	clip-path: polygon(0 30%, 70% 0, 70% 100%, 0 70%);
}

.icon-notice::after {
	right: 2px;
	top: 6px;
	width: 3px;
	height: 14px;
	border-radius: 99px;
}

.icon-settlement::before {
	left: 2px;
	top: 2px;
	width: 22px;
	height: 20px;
	border: 3px solid currentColor;
	border-radius: 50%;
	background: transparent;
}

.icon-settlement::after {
	content: "₩";
	left: 7px;
	top: 5px;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	background: transparent;
}

.icon-mypage::before {
	left: 5px;
	bottom: 2px;
	width: 16px;
	height: 11px;
	border: 3px solid currentColor;
	border-radius: 10px 10px 2px 2px;
	background: transparent;
}

.icon-mypage::after {
	left: 9px;
	top: 1px;
	width: 8px;
	height: 8px;
	border: 3px solid currentColor;
	border-radius: 50%;
	background: transparent;
}

@media (max-width: 360px) {
	.login-content {
		padding-top: 130px;
	}

	.login-brand-block {
		margin-bottom: 48px;
	}

	.status-tab-list {
		gap: 16px;
	}

	.patient-meta-grid {
		grid-template-columns: 1fr 0.6fr;
	}
}

/* 2026-05-13 추가 수정: 아이콘 이미지, 신규신청, date/time input */
.reservation-fixed-header {
	padding-top: 10px;
}

.bottom-navigation-icon::before,
.bottom-navigation-icon::after,
.icon-reservation::before,
.icon-reservation::after,
.icon-signup::before,
.icon-signup::after,
.icon-notice::before,
.icon-notice::after,
.icon-settlement::before,
.icon-settlement::after,
.icon-mypage::before,
.icon-mypage::after {
	display: none !important;
	content: none !important;
}

.bottom-navigation-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 24px;
}

.bottom-navigation-icon img {
	display: block;
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.bottom-navigation-link.is-active .bottom-navigation-icon img {
	opacity: 1;
}

.reservation-search-button::before,
.reservation-search-button::after,
.meta-item::before,
.calendar-icon,
.memo-icon,
.detail-calendar-icon,
.detail-time-icon,
.detail-calendar-icon::before,
.detail-time-icon::before,
.detail-time-icon::after,
.reservation-log-send-button::before,
.reservation-log-send-button::after {
	display: none !important;
	content: none !important;
}

.reservation-search-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.reservation-search-button img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.meta-icon,
.reservation-info-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	object-fit: contain;
}

.reservation-memo-row .reservation-info-icon {
	width: 18px;
	height: 18px;
}

.detail-date-input-wrap .detail-text-input,
.detail-time-input-wrap .detail-text-input {
	padding-right: 33px;
}

.detail-input-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	width: 15px;
	height: 15px;
	object-fit: contain;
	transform: translateY(-50%);
	pointer-events: none;
}

input[type="date"],
input[type="time"] {
	appearance: none;
	-webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	cursor: pointer;
}

.reservation-log-send-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.reservation-log-send-button img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.detail-reservation-date-time-group {
	grid-template-columns: minmax(0, 1fr) minmax(88px, 0.6fr);
}

.new-application-frame {
	background: #fff;
}

.new-application-page {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #fff;
	overflow: hidden;
}

.new-application-topbar {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 94px;
	padding: 0 24px 24px;
	border-bottom: 1px solid #eff0f3;
	background: #fff;
}

.new-application-topbar h1 {
	margin: 0;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #1f2024;
}

.new-application-form {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding-bottom: 21px;
	background: #fff;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.new-application-form::-webkit-scrollbar {
	display: none;
}

.new-application-form-inner {
	padding: 37px 24px 25px;
}

.new-application-branch-tab-list {
	gap: 10px;
	margin-bottom: 22px;
}

.new-application-branch-tab-list .reservation-branch-tab {
	height: 45px;
	border-radius: 6px;
	font-size: 15px;
	background: #f4f5f7;
}

.new-application-branch-tab-list .reservation-branch-tab.is-active {
	background: #3467f2;
}

.new-application-request-date-row {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 17px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #8d9098;
}

.new-application-field-list {
	gap: 14px;
}

.new-application-field-row {
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 10px;
}

.new-application-field-row .detail-field-label {
	font-size: 14px;
}

.new-application-field-row .detail-text-input,
.new-application-field-row .detail-select-input {
	height: 49px;
	padding-left: 16px;
	border-radius: 6px;
	font-size: 15px;
}

.new-application-field-row .detail-date-input-wrap .detail-text-input,
.new-application-field-row .detail-time-input-wrap .detail-text-input {
	padding-right: 38px;
}

.new-application-field-row .detail-input-icon {
	right: 14px;
	width: 18px;
	height: 18px;
}

.new-application-field-row .birth-check-label {
	min-height: 49px;
	font-size: 13px;
}

.new-application-comment-section {
	padding: 28px 24px 24px;
	border-top: 8px solid #f5f6f8;
	background: #fff;
}

.new-application-comment-section .detail-section-title {
	margin-bottom: 17px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #5f636c;
}

.new-application-comment-box {
	padding: 0;
	border: 1px solid #d9dbe0;
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
}

.new-application-comment-textarea {
	height: 111px;
	border: 0;
	border-radius: 0;
	font-size: 15px;
}

.new-application-comment-action-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 9px;
	padding: 13px 19px 18px;
}

.new-application-sub-button {
	height: 46px;
	border: 1px solid #e1e3e8;
	border-radius: 7px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
	background: #fff;
}

.new-application-sub-button.is-emphasis {
	border-color: #202124;
}

.new-application-submit-wrap {
	padding: 10px 24px 20px;
	background: #fff;
}

.new-application-submit-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 54px;
	border-radius: 7px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.05em;
}

@media (max-width: 360px) {
	.new-application-topbar {
		height: 82px;
	}

	.new-application-form-inner {
		padding: 28px 18px 22px;
	}

	.new-application-field-row {
		grid-template-columns: 80px minmax(0, 1fr);
	}

	.new-application-field-row .detail-text-input,
	.new-application-field-row .detail-select-input {
		font-size: 13px;
	}

	.new-application-comment-section,
	.new-application-submit-wrap {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* v0.01 추가 수정: date/time 입력창 전체 클릭, footer active 아이콘 */
.detail-date-input-wrap,
.detail-time-input-wrap {
	cursor: pointer;
}

.detail-date-input-wrap input[type="date"],
.detail-time-input-wrap input[type="time"] {
	position: relative;
	cursor: pointer;
}

.detail-date-input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.detail-time-input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	cursor: pointer;
}

.bottom-navigation-link.is-active .bottom-navigation-icon img {
	content: normal;
}



/* v0.02 공통 앱 헤더, 로그아웃, 정산 화면 */
.app-logo-header {
	position: relative;
	z-index: 35;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 48px;
	padding: 10px 19px 4px;
	background: inherit;
}

.app-logo-logout-link {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 112px;
	height: 36px;
}

.app-logo-area {
	width: 98px;
	height: 32px;
}

.reservation-page {
	padding-top: 0;
}

.reservation-fixed-header {
	margin-top: 0;
	padding-top: 7px;
}

.reservation-main-header,
.filter-open-button {
	display: none !important;
}

.reservation-detail-logo-header {
	display: none !important;
}

.reservation-detail-fixed-header {
	border-top: 1px solid rgba(237, 240, 244, 0.8);
}

.reservation-detail-topbar {
	height: 44px;
}

.new-application-topbar {
	height: 68px;
	padding-bottom: 21px;
}

.settlement-frame {
	background: #f5f6f8;
}

.settlement-page {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #f5f6f8;
	overflow: hidden;
}

.settlement-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding-bottom: 18px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.settlement-scroll::-webkit-scrollbar {
	display: none;
}

.settlement-summary-panel {
	padding: 36px 24px 37px;
	border-radius: 0 0 38px 38px;
	background: radial-gradient(circle at 50% 18%, rgba(207, 236, 255, 0.85), rgba(255,255,255,0.86) 46%, #fff 72%);
}

.settlement-title {
	margin: 0 0 29px;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.05em;
	text-align: center;
	color: #202124;
}

.settlement-coin-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 95px;
	margin-bottom: 26px;
}

.settlement-coin-image {
	display: block;
	width: 94px;
	height: 94px;
	object-fit: contain;
}

.settlement-amount-summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
	align-items: center;
	margin-bottom: 33px;
}

.settlement-amount-item {
	min-width: 0;
	text-align: center;
}

.settlement-amount-item span {
	display: block;
	margin-bottom: 12px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #a1a5ad;
}

.settlement-amount-item strong {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	font-size: 27px;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: #25272c;
}

.settlement-amount-item em {
	font-size: 15px;
	font-weight: 900;
	font-style: normal;
	letter-spacing: -0.05em;
}

.settlement-amount-divider {
	height: 51px;
	background: #e4e6ea;
}

.settlement-bank-info {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 26px;
	padding: 0 14px;
	border: 1px solid #e1e3e8;
	border-radius: 999px;
	background: rgba(255,255,255,0.84);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.04em;
	white-space: nowrap;
	overflow: hidden;
}

.settlement-bank-info strong {
	flex: 0 0 auto;
	color: #202124;
}

.settlement-bank-info span {
	min-width: 0;
	color: #9ba0a9;
	overflow: hidden;
	text-overflow: ellipsis;
}

.settlement-tab-sticky {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 24px 24px 12px;
	background: rgba(245, 246, 248, 0.72);
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
}

.settlement-tab-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 3px;
	border-radius: 999px;
	background: rgba(238, 239, 243, 0.94);
}

.settlement-tab-button {
	height: 38px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #9aa0aa;
	background: transparent;
}

.settlement-tab-button.is-active {
	color: #202124;
	background: #fff;
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.03);
}

.settlement-list-panel {
	display: none;
	padding: 0 24px 22px;
}

.settlement-list-panel.is-active {
	display: block;
}

.settlement-month-section {
	margin-top: 16px;
}

.settlement-month-section h2 {
	margin: 0 0 10px;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.05em;
	color: #a1a5ad;
}

.settlement-history-card {
	padding: 17px 22px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 15px 26px rgba(26, 28, 33, 0.04);
}

.settlement-history-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 0 0 18px;
}

.settlement-history-row + .settlement-history-row {
	padding-top: 16px;
	border-top: 1px solid rgba(237, 240, 244, 0.72);
}

.settlement-history-row:last-child {
	padding-bottom: 0;
}

.settlement-history-info {
	min-width: 0;
}

.settlement-history-info time {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #a0a4ac;
}

.settlement-history-info strong {
	display: block;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: #4a4d54;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.settlement-history-amount {
	min-width: 102px;
	text-align: right;
}

.settlement-history-amount strong {
	display: block;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: #202124;
}

.settlement-history-amount span {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
}

.settlement-withdraw-button-wrap {
	flex: 0 0 auto;
	padding: 11px 24px 15px;
	background: linear-gradient(180deg, rgba(245,246,248,0), #f5f6f8 26%);
}

.settlement-withdraw-button {
	height: 54px;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.05em;
}

@media (max-width: 360px) {
	.app-logo-header {
		height: 44px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.settlement-summary-panel,
	.settlement-tab-sticky,
	.settlement-list-panel,
	.settlement-withdraw-button-wrap {
		padding-left: 18px;
		padding-right: 18px;
	}

	.settlement-amount-item strong {
		font-size: 23px;
	}

	.settlement-history-card {
		padding-left: 16px;
		padding-right: 16px;
	}
}


/* v0.02 정산 스크롤 시 제목 + 탭 고정 보정 */
.settlement-title-sticky {
	position: sticky;
	top: 0;
	z-index: 22;
	padding: 25px 24px 12px;
	background: rgba(245, 246, 248, 0.72);
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
}

.settlement-title-sticky .settlement-title {
	margin: 0;
}

.settlement-summary-panel {
	padding-top: 18px;
}

.settlement-tab-sticky {
	top: 61px;
	padding-top: 13px;
}

@media (max-width: 360px) {
	.settlement-title-sticky {
		padding-left: 18px;
		padding-right: 18px;
	}

	.settlement-tab-sticky {
		top: 57px;
	}
}

/* v0.03 수정: 신규신청/정산 상단 여백, 신규신청 라벨/예약일시, 예약현황 전화번호 정렬 */
.new-application-topbar {
	height: 46px;
	padding: 0 24px 10px;
}

.new-application-form-inner {
	padding-top: 24px;
}

.new-application-field-row {
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 8px;
}

.new-application-field-row .detail-date-input-wrap,
.new-application-field-row .detail-time-input-wrap {
	width: 100%;
}

.detail-reservation-date-time-group {
	grid-template-columns: 1fr;
}

.meta-item .meta-value {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.meta-phone {
	justify-content: flex-end;
	text-align: right;
}

.meta-phone .meta-icon {
	margin-right: 5px;
}

.meta-phone .meta-value {
	direction: rtl;
	text-align: right;
}

.settlement-title-sticky {
	padding: 10px 24px 8px;
}

.settlement-title-sticky .settlement-title {
	line-height: 1.15;
}

.settlement-summary-panel {
	padding-top: 8px;
}

.settlement-title {
	margin-bottom: 18px;
}

.settlement-tab-sticky {
	top: 46px;
}

@media (max-width: 360px) {
	.new-application-topbar {
		height: 42px;
		padding-bottom: 9px;
	}

	.new-application-form-inner {
		padding-top: 20px;
	}

	.new-application-field-row {
		grid-template-columns: 70px minmax(0, 1fr);
		gap: 7px;
	}

	.settlement-title-sticky {
		padding-top: 9px;
		padding-bottom: 7px;
	}

	.settlement-tab-sticky {
		top: 42px;
	}
}

/* v0.05 내정보 / 출금정보 등록 화면 */
.my-info-frame,
.withdrawal-info-frame {
	background: #f5f6f8;
}

.my-info-page,
.withdrawal-info-page {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #f5f6f8;
	overflow: hidden;
}

.my-info-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 0 19px 22px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.my-info-scroll::-webkit-scrollbar {
	display: none;
}

.my-info-profile-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 96px;
	margin: 0 -19px 18px;
	padding: 19px 24px 18px;
	background: linear-gradient(135deg, #3467f2, #2e5fe0);
	color: #fff;
}

.my-info-profile-text {
	min-width: 0;
}

.my-info-profile-text span {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: -0.04em;
	opacity: 0.78;
}

.my-info-profile-text strong {
	display: block;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.05em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.my-info-profile-edit-button {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.my-info-profile-edit-button img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.my-info-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 22px;
}

.my-info-summary-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 118px;
	padding: 16px 17px 14px;
	border: 1px solid #e6e8ed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 24px rgba(26, 28, 33, 0.04);
}

.my-info-card-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 32px;
	margin-bottom: 11px;
}

.my-info-card-icon img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.my-info-card-title {
	display: block;
	min-height: 20px;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.05em;
	color: #555963;
}

.my-info-card-value {
	display: block;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #202124;
}

.my-info-card-value.is-red {
	color: #ef3838;
}

.my-info-card-value.is-blue {
	color: #1673d6;
}

.my-info-card-section {
	margin-bottom: 21px;
}

.my-info-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.my-info-section-title {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
}

.my-info-section-header .my-info-section-title {
	margin-bottom: 0;
}

.my-info-text-link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	padding: 0 12px;
	border: 1px solid #d9dbe0;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
	background: #fff;
}

.my-info-table-card,
.my-info-empty-withdraw-card {
	border: 1px solid #e1e3e8;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 24px rgba(26, 28, 33, 0.035);
	overflow: hidden;
}

.my-info-table-row {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	align-items: center;
	min-height: 48px;
	border-bottom: 1px solid #eef0f3;
}

.my-info-table-row:last-child {
	border-bottom: 0;
}

.my-info-table-row.has-action {
	grid-template-columns: 78px minmax(0, 1fr) 54px;
}

.my-info-table-row strong {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 8px;
	border-right: 1px solid #eef0f3;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #444851;
	background: #fafbfc;
	text-align: center;
}

.my-info-table-row span {
	min-width: 0;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #25272d;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.my-info-table-row button {
	height: 100%;
	border-left: 1px solid #eef0f3;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
	background: #fff;
}

.my-info-empty-withdraw-card {
	padding: 24px 18px 20px;
	text-align: center;
}

.my-info-empty-withdraw-card p {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #8f939d;
}

.my-info-withdraw-register-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 46px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #fff;
	background: #17191e;
}

.withdrawal-info-topbar {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-top: 1px solid rgba(237, 240, 244, 0.8);
	border-bottom: 1px solid #e8eaef;
	background: #fff;
}

.withdrawal-info-topbar h1 {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
}

.withdrawal-back-button {
	position: absolute;
	left: 20px;
	top: 50%;
	width: 28px;
	height: 28px;
	transform: translateY(-50%);
}

.withdrawal-back-button::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 6px;
	width: 12px;
	height: 12px;
	border-left: 2.5px solid #111318;
	border-bottom: 2.5px solid #111318;
	transform: rotate(45deg);
}

.withdrawal-info-form {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 22px 24px 24px;
	background: #fff;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.withdrawal-info-form::-webkit-scrollbar {
	display: none;
}

.withdrawal-member-tab-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 25px;
}

.withdrawal-member-tab {
	height: 72px;
	border: 1px solid #e1e3e8;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
	background: #fff;
}

.withdrawal-member-tab.is-active {
	border-color: #3467f2;
	color: #fff;
	background: #3467f2;
	box-shadow: 0 10px 22px rgba(52, 103, 242, 0.18);
}

.withdrawal-form-panel {
	display: none;
}

.withdrawal-form-panel.is-active {
	display: block;
}

.withdrawal-field-list {
	gap: 12px;
}

.withdrawal-field-row {
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 8px;
}

.withdrawal-field-row .detail-field-label {
	font-size: 13px;
	line-height: 1.25;
}

.withdrawal-field-row .detail-text-input {
	height: 48px;
	border-radius: 8px;
	font-size: 14px;
}

.withdrawal-input-button-group {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 58px;
	gap: 8px;
}

.withdrawal-input-button-group button,
.withdrawal-file-label {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border: 1px solid #d9dbe0;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
	background: #fff;
}

.withdrawal-input-button-group button {
	color: #3467f2;
}

.withdrawal-file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.withdrawal-file-label {
	justify-content: flex-start;
	min-width: 0;
	padding: 0 12px;
	font-weight: 700;
	color: #9ca0a9;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.withdrawal-radio-row {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 17px;
	padding-left: 90px;
}

.withdrawal-radio-row label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
	cursor: pointer;
}

.withdrawal-radio-row input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.withdrawal-radio-row span {
	position: relative;
	width: 16px;
	height: 16px;
	border: 1.5px solid #c5c8d0;
	border-radius: 50%;
}

.withdrawal-radio-row input:checked + span {
	border-color: #3467f2;
}

.withdrawal-radio-row input:checked + span::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 4px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3467f2;
}

.withdrawal-submit-wrap {
	padding-top: 26px;
}

.withdrawal-submit-button {
	height: 54px;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.05em;
}

@media (max-width: 360px) {
	.my-info-scroll {
		padding-left: 16px;
		padding-right: 16px;
	}

	.my-info-profile-panel {
		margin-left: -16px;
		margin-right: -16px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.my-info-summary-card {
		min-height: 108px;
		padding: 14px;
	}

	.my-info-table-row,
	.my-info-table-row.has-action {
		grid-template-columns: 68px minmax(0, 1fr) 48px;
	}

	.my-info-table-row:not(.has-action) {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.withdrawal-info-form {
		padding-left: 18px;
		padding-right: 18px;
	}

	.withdrawal-field-row {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.withdrawal-input-button-group {
		grid-template-columns: minmax(0, 1fr) 52px;
	}

	.withdrawal-radio-row {
		padding-left: 80px;
	}
}


/* v0.06 내정보 입력형 변경 / 알림 화면 */
.my-info-account-form {
	display: block;
}

.my-info-table-row label {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 8px;
	border-right: 1px solid #eef0f3;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #444851;
	background: #fafbfc;
	text-align: center;
}

.my-info-inline-input {
	width: 100%;
	height: 100%;
	min-width: 0;
	padding: 0 14px;
	border: 0;
	outline: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #25272d;
	background: #fff;
}

.my-info-inline-input::placeholder {
	color: #b0b4bd;
}

.notification-frame {
	background: #f5f6f8;
}

.notification-page {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #f5f6f8;
	overflow: hidden;
}

.notification-topbar {
	position: sticky;
	top: 0;
	z-index: 12;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-bottom: 1px solid rgba(229, 231, 236, 0.9);
	background: rgba(245, 246, 248, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.notification-topbar h1 {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
}

.notification-list {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 18px 19px 24px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.notification-list::-webkit-scrollbar {
	display: none;
}

.notification-card {
	display: block;
	padding: 16px 17px 15px;
	margin-bottom: 12px;
	border: 1px solid #e7e9ee;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(26, 28, 33, 0.045);
}

.notification-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 9px;
}

.notification-type-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	padding: 0 9px;
	border-radius: 7px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #3467f2;
	background: #eef3ff;
}

.notification-reservation_rejected .notification-type-badge,
.notification-reservation_canceled .notification-type-badge {
	color: #e24a4a;
	background: #fff0f0;
}

.notification-message .notification-type-badge {
	color: #087f7a;
	background: #eafafa;
}

.notification-settlement .notification-type-badge {
	color: #7c5b00;
	background: #fff5d9;
}

.notification-card-arrow {
	position: relative;
	width: 18px;
	height: 18px;
}

.notification-card-arrow::after {
	content: "";
	position: absolute;
	right: 4px;
	top: 4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #c3c6ce;
	border-top: 2px solid #c3c6ce;
	transform: rotate(45deg);
}

.notification-title {
	display: block;
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #202124;
}

.notification-description {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.04em;
	color: #555b66;
}

.notification-meta {
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.04em;
	color: #9aa0aa;
}

@media (max-width: 360px) {
	.my-info-table-row label {
		font-size: 11px;
	}

	.my-info-inline-input {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 12px;
	}

	.notification-list {
		padding-left: 16px;
		padding-right: 16px;
	}
}


/* v0.17: 출금정보 인증 기준 안내 */
.withdrawal-process-guide {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 12px 0 16px;
	padding: 12px 14px;
	background: #f6f8fb;
	border: 1px solid #eceff4;
	border-radius: 14px;
	font-size: 12px;
	line-height: 1.5;
	color: #60656f;
}

.withdrawal-process-guide strong {
	font-size: 13px;
	color: #1f2022;
}

/* v0.18 예약 프로세스 보강 */
.reservation-detail-form.is-readonly .detail-text-input,
.reservation-detail-form.is-readonly .detail-select-input,
.reservation-detail-form.is-readonly .detail-comment-textarea {
	background: #f5f6f8;
	color: #777;
}
.reservation-branch-tab.is-disabled {
	cursor: default;
	opacity: .65;
}

/* v0.19 사업자등록정보 API 연동 */
.withdrawal-verify-button:disabled {
	border-color: #e1e4ea !important;
	color: #a5a9b2 !important;
	background: #f4f5f7 !important;
	cursor: default;
}

.withdrawal-verify-button.is-verified {
	border-color: rgba(52, 103, 242, 0.45) !important;
	color: #3467f2 !important;
	background: rgba(52, 103, 242, 0.08) !important;
}

/* v0.20 출금정보 인증 입력 잠금 / 개업일자 아이콘 */
.withdrawal-date-input-wrap {
	width: 100%;
}

.withdrawal-date-input-wrap .detail-text-input {
	width: 100%;
	padding-right: 34px;
}

.withdrawal-date-input-wrap.is-locked {
	cursor: default;
}

.withdrawal-date-input-wrap.is-locked .detail-input-icon {
	opacity: .45;
}

.withdrawal-field-row .detail-text-input[readonly] {
	background: #f5f6f8;
	color: #777;
	cursor: default;
}

.withdrawal-date-input-wrap.is-locked input[type="date"] {
	pointer-events: none;
}

/* v0.21 APICK 외국인등록번호 / 1원 인증 연동 */
.foreign-only-row {
	display: none;
}

.foreign-only-row.is-active {
	display: grid;
}

.withdrawal-process-guide span:last-child {
	color: #3467f2;
	font-weight: 800;
}

/* v0.24 withdrawal bank select */
.withdrawal-bank-select-wrap {
	position: relative;
	width: 100%;
}

.withdrawal-bank-select-wrap .bank-select-input {
	padding-right: 34px;
	cursor: pointer;
	background-color: #fff;
}

.withdrawal-bank-select-icon {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	font-size: 12px;
	color: #8a8f9c;
	pointer-events: none;
}

.bank-select-overlay {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 100;
}

.bank-select-overlay.is-open {
	display: block;
}

.bank-select-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 24, 32, 0.36);
	backdrop-filter: blur(2px);
}

.bank-select-panel {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 82px;
	max-height: min(560px, calc(100% - 130px));
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bank-select-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px 10px;
	font-size: 15px;
	color: #1f2430;
}

.bank-select-close-button {
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background: #f2f4f7;
	font-size: 22px;
	line-height: 1;
	color: #606674;
}

.bank-search-input-wrap {
	position: relative;
	margin: 0 16px 10px;
}

.bank-search-input-wrap i {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #a0a6b4;
}

.bank-search-input {
	width: 100%;
	height: 42px;
	padding: 0 14px 0 34px;
	border: 1px solid #e5e8ef;
	border-radius: 14px;
	background: #f9fafc;
	font-size: 13px;
	outline: none;
}

.bank-select-list {
	overflow-y: auto;
	padding: 2px 10px 14px;
}

.bank-select-item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 13px 10px;
	border: 0;
	border-bottom: 1px solid #f1f3f6;
	background: #fff;
	text-align: left;
}

.bank-select-name {
	font-size: 13.5px;
	font-weight: 700;
	color: #222835;
}

.bank-select-code {
	font-size: 12px;
	font-weight: 700;
	color: #2f80f0;
	background: #eef5ff;
	border-radius: 999px;
	padding: 4px 8px;
}

.bank-select-empty {
	padding: 34px 14px;
	font-size: 13px;
	color: #8f96a3;
	text-align: center;
}

/* v0.29: 내정보 파트너명 수정 */
.my-info-profile-name-input {
	width: 100%;
	margin-top: 3px;
	padding: 7px 9px;
	border: 1px solid rgba(255,255,255,0.55);
	border-radius: 10px;
	background: rgba(255,255,255,0.22);
	color: inherit;
	font-size: 17px;
	font-weight: 800;
	font-family: inherit;
	outline: none;
}
.my-info-profile-edit-button i {
	font-size: 16px;
	line-height: 1;
}
.reservation-detail-action-row.is-readonly-action-row {
	justify-content: flex-end;
}

/* v0.30: 내정보 파트너명 수정 아이콘 가시성 보강 */
.my-info-profile-edit-button i {
	color: #fff;
}
