/* 언어 탭 스타일 */
.language-tabs {
    display: flex;
    margin: 15px 0;
    border-bottom: 1px solid #ddd;
}

.lang-tab {
    padding: 8px 15px;
    margin-right: 5px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-tab.active {
    background-color: #8e44ad;
    color: white;
    border-color: #8e44ad;
}

.lang-tab:hover:not(.active) {
    background-color: #e4e4e4;
}

/* 어덜트 미션 관련 스타일 */
.adult-mission-title {
    color: #e74c3c;
    margin-top: 20px;
}

.adult-mission {
    color: #e74c3c;
}

.adult-mission i {
    color: #e74c3c;
}

/* 미션 목록 스타일 */
.missions-list {
    margin-top: 15px;
}

.missions-list h4 {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.mission-item {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.mission-item i {
    margin-right: 8px;
    margin-top: 4px;
    color: #8e44ad;
}

/* 팀 멤버 스타일 */
.member-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    padding: 15px;
}

.member-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

.member-header i {
    margin-right: 10px;
    color: #8e44ad;
}

.member-missions {
    margin-top: 10px;
}

.member-missions ul {
    margin-top: 5px;
    padding-left: 20px;
}

.member-missions li {
    margin-bottom: 5px;
}

.adult-missions strong {
    color: #e74c3c;
}
