#main .tab {
	margin: 80px 0 60px 0;
}

#main .tab .buy, #main .tab .account {
	margin-top: 80px;
}

#main .tab .title {
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	margin-left: 10px;
	color: #4f4f4f;
}

#main .tab .title img {
	width: auto;
	height: 25px;
}

#main .tab .desc {
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	margin-left: 10px;
	color: #828282;
}

#main .tab a {
	text-align: center;
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	color: #767995;
	width: 140px;
	border: 1px solid #828282;
	border-radius: 5px;
	padding: 10px 0 10px 0;
	margin: 10px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#main .tab a:hover {
	color: #ffffff;
	background: #041c3d;
}

/* .sell과 .account는 기본적으로 표시 (인증 체크는 JavaScript에서 처리) */

/* user_id 설정 모달 */
.userid-setup-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
}
.userid-setup-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}
.userid-setup-modal-content {
	position: relative;
	max-width: 400px;
	margin: 120px auto 0;
	padding: 24px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.userid-setup-modal-title {
	margin: 0 0 12px 0;
	font-size: 18px;
	font-weight: bold;
	color: #041c3d;
}
.userid-setup-modal-desc {
	margin: 0 0 16px 0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}
.userid-setup-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	margin-bottom: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}
.userid-setup-error {
	margin: 0 0 12px 0;
	font-size: 13px;
	color: #c00;
}
.userid-setup-modal-actions {
	margin-top: 16px;
	text-align: right;
}
.userid-setup-modal-actions .btn {
	padding: 8px 20px;
	font-size: 14px;
}

/* page: mypage.aspx - migrated from inline styles */
.mypage-hidden { display: none; }