@charset "UTF-8";

/*
<!-- 메인리스트 Start -->
*/
.container2 {

}


.filter-section {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

 
.filter-label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.filter-tabs {
	display: flex;
	gap: 5px;
}

.filter-tab {
	padding: 8px 20px;
	border: 1px solid #ddd;
	background-color: white;
	color: #666;
	cursor: pointer;
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.3s;
}

.filter-tab.active {
	background-color: #1e88e5;
	color: white;
	border-color: #1e88e5;
}

.search-section {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.search-input2 {
	padding: 8px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	width: 300px;
	font-size: 14px; 
	height:30px !important;
}

.search-btn {
	padding: 8px 20px;
	background-color: #1e88e5;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
}

.course-card {
	cursor:pointer;
	background-color: white;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	display: flex;
	overflow: hidden;
	border: 1px solid #E5E7EB;
	margin-bottom: 2rem;
}

.course-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.course-image {
	width: 300px;
	height: 200px;
	background-color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	border-right:1px solid #E5E7EB;
}

.course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course-content {
	padding: 25px;
	flex: 1;
	position: relative;
}

.status-badge {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid #1e88e5;
	color: #1e88e5;
	border-radius: 20px;
	font-size: 13px;
 
}

.status-badge.closed {
	border: 1px solid #999;
	color: #999;
}

.detail-btn {
	position: absolute;
	top: 25px;
	right: 25px;
	padding: 8px 20px;
	border: 1px solid #ddd;
	background-color: white;
	color: #666;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
}

.course-btn {
	 position: absolute;
	 top: 25px;
	 right: 25px;
	 text-align: center;
	 padding: 0.5rem 1rem;
	 font-size: 0.9rem;
	 font-weight: 500;
	 color: #374151;
	 background-color: white;
	 border: 1px solid #D1D5DB;
	 border-radius: 0.5rem;
	 text-decoration: none;
	 transition: all 0.2s ease;
	 cursor: pointer;
}
 

.course-btn-primary {
	background-color: #2563EB;
	color: white;
	border-color: #2563EB;
}

.course-btn-primary:hover {
	background-color: #1D4ED8;
	border-color: #1D4ED8;
	color: white;
}

.course-title {
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin-top: 10px;
	margin-bottom: 10px;
}

.course-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.info-row {
	display: flex;
	font-size: 14px;
}

.info-label {
	color: #666;
	min-width: 80px;
}

.info-value {
	color: #333;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.page-number {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #666;
	color: white;
	border-radius: 4px;
	font-size: 14px;
}

@media (max-width: 768px) {
	.course-card {
		flex-direction: column;
	}

	.course-image {
		width: 100%;
		height: 200px;
	}

	.search-section {
		width: 100%;
		margin-left: 0;
	}

	.search-input2 {
		flex: 1;
	}
}

.paging-navigation {
    clear: both;
    text-align: center;
    padding-bottom: 0;
    margin-top: 35px;
}
/*
<!-- 메인 리스트 End -->

<!-- 서브 리스트 Start -->
*/
.container3 {

}

.title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

h1 {
	font-size: 24px;
	color: #333;
	margin: 0;
}

.status-buttons {
	display: flex;
	gap: 8px;
}

.back-btn {
	display: inline-block;
	padding: 6px 16px;
	border: 1px solid #1e88e5;
	color: #1e88e5;
	background-color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	white-space: nowrap;
}

.back-btn.closed {
	border: 1px solid #999;
	color: #999;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 40px;
}

.info-table tr {
	border-bottom: 1px solid #e0e0e0;
}

.info-table th {
	background-color: #F5F5F5;
	font-weight:400;
	padding: 15px 10px;
	font-size: 14px;	
}

.info-table td {
	padding: 15px 10px;
	font-size: 14px;
}

.info-table td:first-child {
	width: 30%;
	color: #666;
	font-weight: 500;
}

.info-table td:last-child {
	color: #333;
}

.progress {
	color: #1e88e5;
}

.section-title {
	font-size: 18px;
	font-weight: bold;
	margin: 00px 0 20px 0;
	color: #333;
}

.course-table {
	width: 100%;
	border-collapse: collapse; 
	margin-bottom: 40px;
}

.course-table th {
	background-color: #f8f8f8;
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}

.course-table td {
	padding: 15px 10px;
	font-size: 14px;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}

.apply-btn {
	background-color: #1e88e5;
	color: white;
	border: none;
	padding: 6px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
}

.apply-btn.closed {
	background-color: #999;
	cursor: not-allowed;
}

.content-section {
	line-height: 1.8;
	color: #333;
}

.content-section p {
	margin-bottom: 15px;
	font-size: 14px;
}

.highlight-yellow {
	background-color: #fff59d;
	padding: 2px 4px;
}

.highlight-red {
	color: #d32f2f;
	font-weight: bold;
}

.notice-box {
	background-color: #fff3cd;
	border: 1px solid #ffc107;
	padding: 15px;
	border-radius: 4px;
	margin: 15px 0;
}

.notice-box p {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.6;
}

ul {
	margin-left: 20px;
	margin-bottom: 15px;
}

ul li {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.6;
}

/*
<!-- 서브 리스트 End -->

<!-- 사용자 입력 폼 Start -->
*/

/* form wrapper */
.form-wrapper02 {
	margin-bottom: 30px; 
}

.form-wrapper02 dl {
	position: relative;
	padding-left: 160px;
	background: #f8f8f8;
	border-bottom: 1px solid #ecedef
}

.form-wrapper02 dl dt {
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px 15px 14px 15px;
	width: 160px;
	height: 50px;
	font-weight: 700;
	color: #212121;
	font-size: 15px;
	line-height: 24px;
	text-align: center;

}

.form-wrapper02 dl dt .btns-add-delete {
	margin-top: 5px;
	text-align: right;
}

.form-wrapper02 dl dt .btns-add-delete > button {
	display: inline-block;
	vertical-align: middle;
}


.form-wrapper02 dl dd {
	min-height: 50px;
	padding: 9px 10px 7px 10px;
	background: #fff;
	color: #424242;
	font-size: 15px;
	line-height: 24px;
	text-align: left;
}

.form-wrapper02 dl dd > p {
	min-height: 39px;
	line-height: 39px;
	word-break: keep-all;
}

.form-wrapper02 dl dd.type02 {
	padding-top: 17px;
}

.form-wrapper02 dl dd input,
.form-wrapper02 dl dd select {
	width: 180px;
	height: 35px !important;
	border-color: #e6e6e6;
}


.form-wrapper02 dl dd > input::placeholder {
	text-align: left;
	font-size: 15px;
	line-height: 24px;
}

.form-wrapper02 dl dd label {
	color: #424242;
	margin-right: 10px;
}


.form-wrapper02 dl dd > textarea {
	height: 250px;
	border: 1px solid #dddddd
}

.form-wrapper02 dl dd .input-radio-area input[type="radio"] + label,
.form-wrapper02 dl dd .input-checked-area input[type="checkbox"] + label {
	line-height: 40px;
	background-position: left center;
}

.input-checked-wrapper {
	display: block;
}

.input-checked-area {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}


.input-checked-wrapper.block .input-checked-area {
	display: block;
	margin-top: 5px;
}

.input-checked-area:first-child {
	margin-left: 0 !important;
	margin-top: 0 !important;
}

.input-checked-area input[type="checkbox"] {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 100px;
	white-space: nowrap;
	opacity: 0;
}

.input-checked-area input[type="checkbox"] + label {
	display: block;
	margin: 0;
	padding-left: 32px;
	color: #424242;
	font-size: 14px;
	line-height: 24px;
	background-image: url(../img/icon/icon_checkbox_off.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 24px 24px;
}

.input-checked-area input[type="checkbox"]:checked + label {
	background-image: url(../img/icon/icon_checkbox_on.png);
}

.input-checked-area.only input[type="checkbox"] + label {
	padding-left: 0;
	color: #424242;
	width: 24px;
	line-height: 24px;
	font-size: 14px;
	line-height: 24px;
	text-indent: -5000rem;
	margin: 0 auto;
}


.input-radio-wrapper {
	display: inline-block;
	vertical-align: middle;
}

.input-radio-area {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}

.input-radio-area:first-child {
	margin-left: 0;
}

.input-checked-wrapper.ratio,
.input-radio-wrapper.ratio {
	display: block;
}

.input-checked-wrapper.ratio:after,
.input-radio-wrapper.ratio:after {
	content: "";
	clear: both;
	display: block;
}

.input-checked-wrapper.ratio .input-checked-area,
.input-radio-wrapper.ratio .input-radio-area {
	float: left;
	margin-left: 0;
}

.input-checked-wrapper.ratio.depth2 .input-checked-area,
.input-radio-wrapper.ratio.depth2 .input-radio-area {
	width: 50%;
}

.input-checked-wrapper.ratio.depth3 .input-checked-area,
.input-radio-wrapper.ratio.depth3 .input-radio-area {
	width: 33.33%;
}

.input-checked-wrapper.ratio.depth4 .input-checked-area,
.input-radio-wrapper.ratio.depth4 .input-radio-area {
	width: 25%;
}

.input-checked-wrapper.ratio.depth5 .input-checked-area,
.input-radio-wrapper.ratio.depth5 .input-radio-area {
	width: 20%;
}

.input-radio-area input[type="radio"] {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 100px;
	white-space: nowrap;
	opacity: 0;
}

.input-radio-area input[type="radio"] + label {
	display: block;
	padding-left: 32px;
	color: #424242;
	font-size: 14px;
	line-height: 20px;
	background-image: url(../img/icon/icon_radio_off.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 20px 20px;
}

.input-radio-area input[type="radio"]:checked + label {
	background-image: url(../img/icon/icon_radio_on.png);
}

.input-radio-wrapper + input[type="text"] {
	margin-left: 15px
}

.input-phone-wrapper {
	max-width: 290px;
}

.input-phone-wrapper:after {
	content: "";
	clear: both;
	display: block;
}


.input-phone-wrapper > select,
.input-phone-wrapper > input[type="text"],
.input-phone-wrapper > input[type="number"],
.input-phone-wrapper > input[type="tel"] {
	float: left;
	width: 30%  !important;
}

.input-phone-wrapper > .word-unit {
	float: left;
	width: 5%;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #666666;
	font-size: 14px;
	font-weight: 500;
}

.input-email-wrapper {
	display: block;
	width: 100%;
	max-width: 583px;
}


.input-email-wrapper:after {
	content: "";
	clear: both;
	display: block;
}

.input-email-area {
	float: left;
	width: 100%;
	max-width: 335px;
	margin-right: 10px;
}

.input-email-area > input[type="email"],
.input-email-area > input[type="text"] {
	float: left;
	width: 45%;
}

.input-email-area > .word-unit {
	float: left;
	width: 10%;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #666666;
	font-size: 14px;
	font-weight: 500;
}

.input-email-wrapper select {
	float: left;
	width: 178px;
}

.zipcode {
	position: relative;
	width: 270px;
	padding-right: 110px;
	margin-bottom: 5px;
}

.zipcode.type02 {
	display:inline-block;
	vertical-align: middle;
}

.zipcode > input {
	width: 100% !important;
}

.zipcode > .btn-zipcode {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100px;
	height: 35px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	background: rgba(91, 96, 99, 1);
	transition: all 0.2s ease-in-out;
}

.zipcode > .btn-zipcode:hover,
.zipcode > .btn-zipcode:focus {
	background: rgba(91, 96, 99, 0.9);
}

.licensee-wrapper {
	max-width: 290px;
}

.licensee-wrapper:after {
	content: "";
	clear: both;
	display: block;
}

.licensee-wrapper > input {
	float: left;
}

.licensee-wrapper > input.first {
	width: 30%
}

.licensee-wrapper > input.second {
	width: 20%
}

.licensee-wrapper > input.third {
	width: 40%
}

.licensee-wrapper > .word-unit {
	float: left;
	width: 5%;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #666666;
	font-size: 14px;
	font-weight: 500;
}


.input-checked-area + .input-calendar-wrapper {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}

.input-calendar-wrapper {
	display: block;
	max-width: 400px;
}

.input-calendar-wrapper:after {
	content: "";
	clear: both;
	display: block;
}

.input-calendar-area {
	position: relative;
	float: left;
	width: 45%;
	padding-right: 35px;
	background-color: #fff;
}

.input-calendar-area > input[type="text"] {
	display: block;
	width: 100%;
	padding: 0;
	text-align: center;
	border: 1px solid #dddddd;
	border-right: 0 !important;
	background-color: #fff;
}
.input-calendar-area > button {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
}

.input-calendar-area > input[type="text"]:read-only {
	background: #fff;
}

.input-calendar-wrapper .word-unit {
	float: left;
	width: 10%;
	height: 35px;
	line-height: 35px;
	color: #424242;
	font-size: 14px;
	text-align: center;
}

.form-wrapper02 .one-box + .one-box {
	margin-top: 0;
}

.gray-box01 {
	margin-top: 30px;
	text-align: center;
	padding: 30px;
	background-color: #f8f8f8;
	font-size: 18px;
	line-height: 28px;
	word-break: keep-all;
}

.word-agreement-wrapper {
	position: relative;
	padding-left: 34px;
	color: #212121;
	font-size: 16px;
	line-height: 25px;
}

.word-agreement-wrapper input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background: transparent;
    z-index: -1;
	font-size: 0;
	width: 0;
	height: 0;
	opacity: 0;
}

.word-agreement-wrapper input[type="checkbox"] + label {
	margin-bottom: 0;
	color: #212121;
	font-size: 16px;
	line-height: 25px;
	word-break: keep-all;
}

.word-agreement-wrapper input[type="checkbox"] + label:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	margin-top: -12.5px;
	background-image: url(/_res/ko/img/icon/icon_checkbox01.gif);
	background-repeat: no-repeat;
	background-size: 25px 50px;
	background-position: 0 0;
}

.word-agreement-wrapper input[type="checkbox"]:checked + label:before {
	background-position: 0 -25px;
}
/*
<!-- 사용자 입력 폼 END  -->

<!-- 마이페이지 START -->
제거 해야 함 */
        
.mypage-container{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content:space-between; 
	gap: 20px;
	padding: 0;
	align-items: start;
}


/* 좌측 프로필 영역 */
.profile-section {	
	max-width: 280px;
	background-color: white;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-header {
	text-align: center;
	margin-bottom: 30px;
}

.profile-title {
	font-size: 20px;
	font-weight: bold;
	color: #333; 
	margin-bottom: 20px;

}

.profile-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #e0e0e0;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #999;
}

.student-id {
	font-size: 14px;
	color: #999;
	margin-bottom: 5px;
}

.student-name {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.student-type {
	display: inline-block;
	padding: 4px 12px;
	background-color: #f0f0f0;
	border-radius: 12px;
	font-size: 13px;
	color: #666;
}

.profile-info {
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	padding: 12px 0;
	font-size: 14px;
	border-bottom: 1px solid #f5f5f5;
}

.info-icon {
	width: 20px;
	margin-right: 12px;
	color: #666;
}

.info-label {
	color: #666;
	min-width: 80px;
}

.info-value {
	color: #333;
	font-weight: 500;
}

.info-value.highlight {
	color: #1e88e5;
	font-weight: bold;
	font-size: 16px;
}

.info-value.point {
	color: #ff6f00;
}

/* 우측 신청내역 영역 */
.content-section {

	overflow-x: auto;
}

.section-title {
	font-size: 20px;
	font-weight: bold;
	color: #333; 
	padding-bottom: 15px;
	border-bottom: 2px solid #333;
}

.application-table {
	width: 100%;
	border-collapse: collapse; 
}

.application-table thead th {
	background-color: #f8f8f8;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}

.application-table tbody td {
	padding: 10px 10px;
	font-size: 14px;
	color: #333;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}

.application-table tbody tr:hover {
	background-color: #fafafa;
}

.course-name {
	text-align: left;
	font-weight: 500;
}

.course-period {
	font-size: 13px;
	color: #666;
}


.status-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: bold;
	background-color: transparent;
	border: 2px solid;
}

.status-application {
	border-color: #616161;
	color: #616161;
}

.status-selected {
	border-color: #43a047;
	color: #43a047;
}

.status-rejected {
	border-color: #e53935;
	color: #e53935;
}

.status-incomplete {
	border-color: #e53935;
	color: #e53935;
}

.status-complete {
	border-color: #1e88e5;
	color: #1e88e5;
}

.capacity {
	font-size: 13px;
}

.capacity.full {
	color: #d32f2f;
	font-weight: bold;
}

.detail-btn {
	padding: 6px 16px;
	border: 1px solid #ddd;
	background-color: white;
	color: #666;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.3s;
}

.detail-btn:hover {
	background-color: #f5f5f5;
	border-color: #999;
}

.cancel-btn {
	padding: 6px 16px;
	border: 1px solid #d32f2f;
	background-color: white;
	color: #d32f2f;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.3s;
}

.cancel-btn:hover {
	background-color: #d32f2f;
	color: white;
}

.empty-message {
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 15px;
}

@media (max-width: 1023px) {
	.mypage-container {
		grid-template-columns: 1fr;
	}

	.profile-section {
		max-width: 100%;
	}
}
/*
<!-- 마이페이지 END -->
*/


.btns-area {
    /* max-width: 1220px; */
    /* padding: 0 20px; */
    margin: 15px auto 0 auto;
    text-align: center;
}

.btn-xm01 {
    display: inline-block;
    vertical-align: middle;
    width: 2.154rem;
    height: 1.692rem;
    font-size: 0.3rem;
    text-align: center;
    border: 1px solid #413b70;
    background-color: #fff;
    color: #fff;
    border-radius: 2px;
    background: #413b70;
	cursor:point;
}

.btn-m01 {
    display: inline-block;
    vertical-align: middle;
    width: 6.154rem;
    height: 2.692rem;
    line-height: 2.692rem;
    font-size: 1rem;
    margin: 0 0.1154rem;
    padding: 0 1.071rem;
    text-align: center;
    border: 1px solid #413b70;
    background-color: #fff;
    color: #413b70;
    border-radius: 3px;
    font-weight: 500;
    background: #fff;
}

.btn-m02 {
    display: inline-block;
    vertical-align: middle;
    width: 6.154rem;
    height: 2.692rem;
    line-height: 2.692rem;
    font-size: 1rem;
    margin: 0 0.1154rem;
    padding: 0 1.071rem;
    text-align: center;
    border: 1px solid #413b70;
    background-color: #fff;
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
    background: #413b70;
}

.btn-m03 {
    display: inline-block;
    vertical-align: middle;
    width: 6.154rem;
    height: 2.692rem;
    line-height: 2.692rem;
    font-size: 1rem;
    color: #000;
    margin: 0 0.1154rem;
    padding: 0 1.071rem;
    text-align: center;
    border: 1px solid #1354a4;
    border-radius: 3px;
    font-weight: 500;
    background: #fff;
}

.report-charCount {
	font-size: 14px;
	margin-top: 10px;
}

.report-warning {
	color: red;
	font-size: 14px;
	display: none;
}

/*설문조사 START*/
.svy-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.svy-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.svy-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e0e0e0;
}

.svy-item {
	background-color: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 20px;
}

.svy-question {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.svy-question-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	background-color: #1e88e5;
	color: white;
	border-radius: 50%;
	font-size: 14px;
	font-weight: bold;
}

.svy-question-text {
	flex: 1;
}

.svy-question-link {
	color: #1e88e5;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s;
}

.svy-question-link:hover {
	color: #1565c0;
	text-decoration: underline;
}

.svy-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-left: 8px;
	color: #1e88e5;
	cursor: pointer;
	transition: color 0.3s;
}

.svy-link-icon:hover {
	color: #1565c0;
}

.svy-rating-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
}

.svy-rating-label {
	font-size: 13px;
	color: #666;
	min-width: 80px;
}

.svy-rating-label.start {
	text-align: left;
}

.svy-rating-label.end {
	text-align: right;
}

.svy-rating-options {
	display: flex;
	gap: 15px;
	flex: 1;
	justify-content: center;
}

.svy-rating-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.svy-rating-option input[type="radio"] {
	display: none;
}

.svy-rating-label-circle {
	width: 50px;
	height: 50px;
	border: 2px solid #ddd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	background-color: white;
}

.svy-rating-option input[type="radio"]:checked + .svy-rating-label-circle {
	background-color: #1e88e5;
	border-color: #1e88e5;
	color: white;
	transform: scale(1.1);
}

.svy-rating-label-circle:hover {
	border-color: #1e88e5;
	color: #1e88e5;
}

.svy-rating-text {
	font-size: 12px;
	color: #999;
}

.svy-submit-container {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	padding-top: 30px; 
}

.svy-submit-btn {
	padding: 12px 40px;
	background-color: #1e88e5;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.svy-submit-btn:hover {
	background-color: #1565c0;
}

.svy-required {
	color: #e53935;
	margin-left: 4px;
}

@media (max-width: 768px) {
	.svy-rating-container {
		flex-direction: column;
		gap: 15px;
	}

	.svy-rating-label {
		min-width: auto;
		width: 100%;
		text-align: center;
	}

	.svy-rating-options {
		width: 100%;
		justify-content: space-around;
		gap: 8px;
	}

	.svy-rating-label-circle {
		width: 45px;
		height: 45px;
		font-size: 14px;
	}
}
/*설문조사 END*/