:root {
    --comicw-blue: #6bcaf8fc;
    --comicw-gray: #61686b;
    --comicw-radius: 10px;
    --comicw-light-blue: #5BB6E2;
    --comicw-hover-blue: #6b90f8;
    --comicw-shadow-blue: rgb(172 230 255 / 92%);
}

/* 해더 일부 css 무력화 */
.breadcrumb{display:none!important;}

/* GW_basic responsive.css 의 padding 강제 제거 */
.main_boundary,.sub_boundary{padding:0!important;}
*{box-sizing:border-box;}
body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Apple SD Gothic Neo","Noto Sans KR",sans-serif;background:#f5f5f5;}

/* 코믹초이스 전용 래퍼 */
.comic-choice-wrapper {
    background: var(--comicw-blue);
    min-height: 100vh;
    padding: 130px 0 100px 0;
    margin: 0;
}

.comic-choice-container {
    max-width: 100%;
    padding: 0 10px;
    text-align: center;
    word-break: keep-all;
}

/* 타이틀 영역 */
.choice-title-area {
    margin-bottom: 30px;
}

.choice-main-title {
    color: #fff;
    font-size: 1.9rem;
    text-shadow: rgb(183 227 255 / 60%) 2px 2px;
    margin-bottom: 15px;
}

.choice-sub-title {
    color: #ebf6ff;
    font-size: 0.9rem;
    margin: 0;
}

/* 가이드 영역 */
.choice-guide-area {
    margin-bottom: 30px;
}

.choice-guide-box {
    background: #fff;
    border-radius: var(--comicw-radius);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px;
}

.choice-guide-content {
    text-align: left;
    line-height: 1.6;
}

.choice-guide-content h2 {
    color: var(--comicw-light-blue);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.choice-guide-content p {
    margin: 8px 0;
    color: #333;
}

.choice-guide-content .fa-check {
    color: var(--comicw-light-blue);
    margin-right: 8px;
}

/* 강조 공지 */
.choice-notice-highlight {
    color: #fff !important;
    font-weight: bold;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--comicw-radius);
}

.choice-notice-highlight span {
    color: #fff !important;
    font-weight: bold;
}

/* 후보자 확인 버튼 */
.choice-candidate-btn {
    display: inline-block;
    background-color: #fff;
    color: var(--comicw-light-blue);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px;
    transition: all 0.3s ease;
}

.choice-candidate-btn:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
}

/* 투표 참여 버튼 */
.choice-action-area {
    margin-top: 30px;
}

.choice-vote-btn {
    background-color: #fff;
    color: var(--comicw-light-blue);
    padding: 20px 0;
    border: none;
    width: 100%;
    max-width: 500px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    transition: all 0.3s ease;
}

.choice-vote-btn:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 20px;
}

/* Sweet Alert 모달 */
.swal-modal {
    word-break: keep-all;
}

/* 반응형 */
@media (max-width: 768px) {
    .comic-choice-wrapper {
        padding: 30px 0 80px 0;
    }
    
    .choice-main-title {
        font-size: 1.5rem;
    }
    
    .choice-vote-btn {
        font-size: 16px;
        padding: 18px 0;
    }
}

/* =============================== 코믹 초이스 투표 ======================== */

/* 투표 섹션 */
.choice-vote-section {
    padding: 20px 0;
}

.choice-vote-notice {
    margin-bottom: 20px;
}

.choice-vote-info {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--comicw-radius);
}

/* 투표 폼 */
.choice-vote-form {
    width: 100%;
}

/* 투표 테이블 */
.choice-vote-table {
    margin: 20px auto;
    text-align: left;
    border-spacing: 1.2rem;
    width: 100%;
    max-width: 600px;
}

.choice-team-row {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: var(--comicw-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.choice-team-row:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 20px;
}

.choice-team-row.disabled {
    background: #d7d7d7;
    cursor: not-allowed;
    opacity: 0.6;
}

.choice-team-cell {
    padding: 1em 1.2em;
    border-radius: var(--comicw-radius);
}

.choice-team-label {
    font-size: 1.3rem;
    line-height: 2rem;
    width: 100%;
    display: block;
    cursor: pointer;
    margin: 0;
}

.choice-team-row.disabled .choice-team-label {
    cursor: not-allowed;
}

.choice-team-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    text-align: left;
}

.choice-team-name {
    vertical-align: middle;
    font-weight: 500;
    color: #333;
}

/* 선택된 상태 */
.choice-team-row.on {
    box-shadow: var(--comicw-shadow-blue) 0px 0px 0px 3px;
    background: var(--comicw-hover-blue);
}

.choice-team-row.on .choice-team-name {
    font-weight: bold;
    color: #fff;
}

.choice-team-row.on .num {
    font-weight: bold;
    color: #fff;
}

/* 라디오 버튼 숨기기 */
.choice-radio {
    vertical-align: middle;
    appearance: none;
    display: none;
}

/* 팀 번호 - 항상 명확하게 보이도록 */
.choice-team-row .num {
    display: flex;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    min-width: 35px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    margin-right: 12px;
    flex-shrink: 0;
    z-index: 1;
}

.choice-team-row .num::after {
    content: "";
    display: block;
    position: absolute;
    height: 35px;
    width: 35px;
    background: #4d9fff; /* 진한 파란색으로 변경 */
    z-index: -1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px; /* 그림자 추가 */
}

/* 선택된 상태일 때는 더 진하게 */
.choice-team-row.on .num::after {
    background: #2a7fd9;
}

/* 반응형 - 투표 테이블 */
@media (max-width: 768px) {
    .choice-vote-table {
        border-spacing: 0.8rem;
    }
    
    .choice-team-label {
        font-size: 1.1rem;
    }
    
    .choice-team-cell {
        padding: 0.8em 1em;
    }
    
    .choice-team-row .num {
        height: 30px;
        width: 30px;
        min-width: 30px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .choice-team-row .num::after {
        height: 30px;
        width: 30px;
    }
}