/* 대체교사 지원 참고사항 스타일 - 기존 CSS와 충돌 방지 */
.subteacher-ref-box {
    background-color: #f5f5f5;
    border: 2px dashed #cccccc;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 20px 0;
}

.subteacher-ref-box .subteacher-ref-item {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.subteacher-ref-box .subteacher-ref-item:first-child {
    margin-top: 0;
}

.subteacher-ref-box .subteacher-ref-item:last-child {
    margin-bottom: 0;
}

.subteacher-satisfaction-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.subteacher-satisfaction-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.subteacher-satisfaction-text em.blue {
    color: #0066cc;
    font-style: normal;
    font-weight: 500;
}

.subteacher-satisfaction-link {
    display: inline-block;
    background: #f1774c;
    padding: 5px 8px;
    border-radius: 5px;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.subteacher-satisfaction-link:hover {
    background: #d65a2e;
    text-decoration: none;
    color: #fff !important;
}

.subteacher-qr-wrapper {
    display: inline-block;
    border: 3px solid #28a745;
    border-radius: 4px;
    padding: 5px;
    background: #fff;
    vertical-align: middle;
}

.subteacher-qr-wrapper img {
    display: block;
    width: 70px;
    height: auto;
}

/* 법령 및 안내사항 리스트 스타일 */
.subteacher-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 4px;
}

.subteacher-info-list li {
    margin: 10px 0;
    padding-left: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    position: relative;
}

.subteacher-info-list li:first-child {
    margin-top: 0;
}

.subteacher-info-list li:last-child {
    margin-bottom: 0;
}

.subteacher-info-list li:before {
    content: "•";
    position: absolute;
    left: -5px;
    color: #4a90e2;
    font-weight: bold;
    font-size: 16px;
}

.subteacher-info-list li:last-child:before {
    content: "※";
    color: #d23836;
    font-weight: bold;
    top: -3px;
}

/* 모바일 대응 */
@media screen and (max-width: 808px) {
    .subteacher-satisfaction-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .subteacher-qr-wrapper {
        margin-top: 10px;
    }
    
    .subteacher-info-list {
        padding: 12px 15px;
    }
    
    .subteacher-info-list li {
        font-size: 13px;
        line-height: 1.7;
    }
}

