.table td {
    padding-top: 0px !important;
    padding-bottom: 0px !important;;
}

.btn {
	min-width: 0px;
}

.note-editable {
	background-color: #fafafa !important;
}


/** 난이도 css **/
.rating-header {
	margin-top: -10px;
	margin-bottom: 10px;
}

.fa-star {
	font-size: 14px;
}


.ratings-container {
    display: block;
    margin-bottom: 0;
}
/** 난이도 css **/


/** 본문 css **/
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
	text-align: center;
}

.stats-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 240px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.stats-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.stats-card .data-value {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.stats-card .data-label {
    font-size: 0.9rem;
    color: #555;
}
/** 본문 css **/


/** 통계 css **/
@media screen and (max-width: 1920px) {

    table.type09 {
        width:100%;
        border-collapse: collapse;
        text-align: left;
        line-height: 1.5;
    }
    table.type09 thead th {
        padding: 20px;
        font-size:20px;
        font-weight: bold;
        vertical-align: top;
        color: #333;
        border-top: 3px solid #333;
        border-bottom: 1px solid #333;
    }
    table.type09 tbody th {
        width: 120px;
        padding: 20px;
        font-weight: 900;
        font-size:14px;
        vertical-align: top;
        border-bottom: 1px solid #ccc;
        border-right:1px solid #ccc;
    }
    table.type09 td {
        width: 320px;
        padding: 20px;
        vertical-align: top;
        font-size:14px;
        font-weight: 600;
        border-bottom: 1px solid #ccc;
    }
    table.type09 td span {
        font-weight: 600;
    }
    
}

@media screen and (max-width: 430px) {
    
    table.type09 {
        width:100%;
        border-collapse: collapse;
        line-height: 1.4;
    }

    table.type09 thead th {
        padding:14px;
        font-size:16px;
        text-align:center;
    }

    table.type09 tbody tr{
        display:block;
        border-bottom:1px solid #ccc;
        padding:6px 0;
    }

    table.type09 tbody th{
        display:block;
        width:100%;
        padding:8px 12px;
        font-size:13px;
        border:none;
        background:#f7f7f7;
    }

    table.type09 tbody td{
        display:block;
        width:100%;
        padding:8px 12px 12px 12px;
        font-size:13px;
        border:none;
        word-break:break-word;
    }

    /* 좌측 border 제거 */
    table.type09 tbody th[style]{
        border-left:none !important;
    }

    /* 업적 카드 줄바꿈 */
    .achievement-card{
        max-width:100%;
    }

    /* rating 크기 축소 */
    .ratings-container{
        transform:scale(0.9);
        transform-origin:left;
    }
    
}
/** 통계 css **/


/** 시험 섹션 css **/
.ready_section_container {
	padding-top: 40px;
    background: #fff;
    border-radius: 8px;
}

.instructions {
    border: 1px solid #000;
    padding: 10px 20px 7px 20px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.instructions ul {
    padding: 0;
    list-style: none;
}

.instructions ul li {
    margin: 10px 0;
}

.ready_section_footer {
    text-align: center;
    border: 1px solid #000;
    padding: 10px;
    background-color: #f1f1f1;
}

.ready_section_footer button {
	color: red;
	font-weight: bold;
	font-size: 16px;
}

.price {
    text-align: center;
    border: 1px solid #000;
    padding: 17px;
    font-weight: bold;
    font-size: 16px;
}
/** 시험 섹션 css **/


/** 업적 css **/
.achivement-container {
	margin: 0 0 15px 0;
}

.achievement-card {
    width: 250px;
    background: #1e2833;
    border: 1px solid #3a4a5c;
    border-radius: 8px;
    padding: 15px;
	margin: 0 15px 0 0;
    color: #d1d8e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.achievement-card .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #3a4a5c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d1d8e0;
    font-size: 12px;
    cursor: pointer;
}

.achievement-card .medal {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #6c7a89, #434a54);
    border: 2px solid #d1d8e0;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.achievement-card .medal-icon {
    font-size: 40px;
    /** color: #d1d8e0; **/
}

.achievement-card .title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.achievement-card .date {
    font-size: 12px;
    color: #a3b1c6;
}
/** 업적 css **/


.content-container {
	margin:50px 0 50px 0;
}

/** 인증 유무 체크 **/
.cert {
    display: flex;
}

.image {
    flex: 0 0 20px;
    background-image: url('../../../../../../skin/layouts/molla/assets/images/verify.png');
    background-repeat: no-repeat;
    margin-right: 10px;
    background-size: 20px 20px;
}

.text {
    flex: 1;
}
/** 인증 유무 체크 **/