/* 시험성적서 조회/발급 */
.main-visual {
	position: relative;
	text-align: center;
}

.main-visual__image {
	width: 100%;
	height: auto;
}

.main-visual__text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 3rem;
	font-weight: bold;
}

/* 탭 메뉴 스타일 */
.tab-menu ul {
	display: flex;
	justify-content: center;
	background-color: #003566;
	list-style: none;
	padding: 10px 0;
	margin-top: 20px;
}

.tab-menu li {
	color: white;
	padding: 10px 20px;
	cursor: pointer;
}

.tab-menu li.active {
	background-color: #00b4d8;
}

.tab-menu li:hover {
	background-color: #00b4d8;
}

/* 시험 성적서 조회/발급 섹션 */
.test-result {
	padding: 50px 0;
	background-color: white;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.test-result__form {
	margin-bottom: 40px;
}

.test-result__form label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
}

.test-result__form input {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 3rem;
}

/*.test-result__form p{*/
/*	font-weight:bold;*/
/*}*/

.btn-submit {
	background-color: #003566;
	color: white;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	margin-bottom: 2rem;
}

.btn-submit:hover {
	background-color: #00b4d8;
}

/* 시험 성적서 결과 테이블 */
.test-result__table {
	list-style: none;
    display: flex;
    flex-wrap: wrap;
	margin-top: 16px;
	/*width: 100%;
	border-collapse: collapse;
	margin-bottom: 50px;*/
}
.test-result__table .pc_title {width: 100%;
    display: flex;
    flex-direction: row;
	border-top: solid 2px #000000;
    
}
.test-result__table .pc_title div {
	padding: 14px 0px;
	font-weight: bold;
}
.test-result__table .pc_title .title_1, .title_1 {
	width: 15%;
}
.test-result__table .pc_title .title_2, .title_2 {
	width: 15%;
}
.test-result__table .pc_title .title_3, .title_3 {
	width: 15%;
}
.test-result__table .pc_title .title_4, .title_4 {
	width: 25%;
}
.test-result__table .pc_title .title_5, .title_5 {
	width: 15%;
}
.test-result__table .pc_title .title_6, .title_6 {
	width: 15%;
}

.test-result__table li {
	text-align: center;
    border-bottom: solid 1px #dddddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.test-result__table li.no_line {
	width: 100%;
    padding: 60px 0px;
}

.test-result__table li .mo_title {
	display: none;
}

.test-result__table li .content {
	padding: 14px 0px;
}

/*.test-result__table th, .test-result__table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.test-result__table th {
	background-color: #003566;
	color: white;
}*/

.btn-download {
	color: #00b4d8;
	text-decoration: none;
	font-weight: bold;
	display: block;
}

.btn-download .file_name {
	display: block;
    font-size: 12px;
}

.btn-download:hover {
	color: #003566;
}

/*시험성적서 tabel*/
.test-result-view table th{
	padding:10px 0;
	text-align:left;
}
.test-result-view table td{
	text-align:left;
}
.test-result-view table tbody th{
	width:10%;
	background:#
}


/* 반응형 디자인 */
@media (max-width: 800px) {
	.test-result-view h3 {
		font-size: 2rem;
        font-weight: bold;
        border-bottom: solid 2px #000;
        padding-bottom: 1rem;
	}
	.test-result__table .pc_title {
		display: none;
	}
	.test-result__table li {
		width: 100%;
		text-align: left;
		margin-bottom: 16px;
	}
	.test-result__table li .mo_title {
		display: flex;
		font-weight: bold;
        font-size: 18px;
	}

	.btn-download .file_name {
		display: unset;
		font-size: 16px;
		margin-right: 10px;
	}
}

@media (max-width: 768px) {
	.navbar__menu {
			flex-direction: column;
			gap: 10px;
	}

	.main-visual__text {
			font-size: 2rem;
	}

	.test-result__form input {
			padding: 8px;
	}

	.btn-submit {
			width: 100%;
	}
}