/* ================================================
   투표 게시판 페이지 스타일
   색상 기준: #3C3744, #B4C5E4, #FBFFF1
   ================================================ */

.vote-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px 60px;
    min-height: calc(100vh - 200px);
    box-sizing: border-box;
}

/* ===== 헤더 ===== */
.vote-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}
.vote-page-title {
    font-size: 24px;
    font-weight: 800;
    color: #3C3744;
    margin: 0 0 6px;
}
.vote-page-desc {
    font-size: 13px;
    color: #777;
    margin: 0;
}
.vote-create-btn {
    padding: 11px 22px;
    background: #3C3744;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.vote-create-btn:hover { background: #2d2b35; }

/* ===== 탭 ===== */
.vote-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 22px;
}
.vote-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.vote-tab:hover { color: #3C3744; }
.vote-tab.active {
    color: #3C3744;
    font-weight: 700;
    border-bottom-color: #3C3744;
}

/* ===== 필터 ===== */
.vote-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}
.filter-type-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.type-tab {
    padding: 6px 14px;
    border: 1px solid #d0d0d0;
    background: white;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}
.type-tab:hover { border-color: #3C3744; color: #3C3744; }
.type-tab.active {
    background: #3C3744;
    color: white;
    border-color: #3C3744;
}
.filter-right {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}
.filter-sort {
    padding: 7px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    background: white;
    color: #3C3744;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color 0.15s;
}
.filter-sort:hover, .filter-sort:focus { border-color: #3C3744; }

.filter-search {
    display: flex;
    gap: 6px;
}
.filter-search input {
    padding: 7px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    width: 220px;
}
.filter-search button {
    padding: 7px 16px;
    border: 1px solid #3C3744;
    background: #3C3744;
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== 카드 그리드 ===== */
.vote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.vote-loading, .vote-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 14px;
}

.vote-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vote-card:hover {
    border-color: #B4C5E4;
    box-shadow: 0 4px 12px rgba(60, 55, 68, 0.08);
    transform: translateY(-2px);
}

.vote-card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.vc-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
}
.vc-badge.type-ox { background: #fff3e0; color: #e65100; }
.vc-badge.type-multiple { background: #e3f2fd; color: #0d47a1; }
.vc-badge.status-open { background: #e8f5e9; color: #2e7d32; }
.vc-badge.status-closed { background: #f5f5f5; color: #777; }
.vc-badge.restriction { background: #fff8e1; color: #5d4037; }

.vote-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #3C3744;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.vote-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vote-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px dashed #eee;
    padding-top: 10px;
    margin-top: auto;
}
.vote-card-meta-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: #888;
}
.vote-card-meta-right {
    text-align: right;
    font-size: 12px;
    color: #555;
}
.vote-card-author {
    font-size: 12px;
    color: #888;
}
.vote-card-author strong { color: #3C3744; font-weight: 700; }

.vote-card-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}
.vc-stat {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}
.vc-stat-icon { font-size: 11px; line-height: 1; }
.vc-stat-like { color: #1565c0; }
.vc-stat-dislike { color: #e65100; }

/* ===== 페이지네이션 ===== */
.vote-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.vote-pagination button {
    padding: 8px 14px;
    border: 1px solid #d0d0d0;
    background: white;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    color: #555;
    min-width: 36px;
}
.vote-pagination button:hover { border-color: #3C3744; }
.vote-pagination button.active {
    background: #3C3744;
    color: white;
    border-color: #3C3744;
    font-weight: 700;
}

/* ===== 모달 ===== */
.vote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    padding: 20px;
}
.vote-modal-overlay[style*="flex"], .vote-modal-overlay[style*="block"] { display: flex !important; }
.vote-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px 28px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.vote-modal-large { max-width: 640px; }
.vote-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.vote-modal-close:hover { color: #3C3744; }
.vote-modal-title {
    font-size: 19px;
    font-weight: 800;
    color: #3C3744;
    margin: 0 0 8px;
}
.vote-modal-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
}

/* ===== 생성 폼 ===== */
.vc-group {
    margin-bottom: 18px;
}
.vc-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #3C3744;
    margin-bottom: 7px;
}
.vc-hint {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}
.vc-group input[type="text"],
.vc-group input[type="password"],
.vc-group input[type="number"],
.vc-group input[type="datetime-local"],
.vc-group textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 9px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    background: #fcfcfc;
    outline: none;
    transition: border-color 0.15s;
}
.vc-group input:focus, .vc-group textarea:focus {
    border-color: #B4C5E4;
    background: white;
}
.vc-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.vc-row .vc-group { margin-bottom: 18px; }

.vc-type-toggle {
    display: flex;
    gap: 8px;
}
.vc-type-btn {
    flex: 1;
    padding: 11px 16px;
    border: 1.5px solid #e0e0e0;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.15s;
}
.vc-type-btn:hover { border-color: #B4C5E4; }
.vc-type-btn.active {
    border-color: #3C3744;
    background: #3C3744;
    color: white;
}

.vc-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vc-radio, .vc-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}
.vc-radio input, .vc-checkbox input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.vc-inline-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}
.vc-inline-label input[type="number"] {
    padding: 6px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
}

#vcOptionsList { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.vc-option-row {
    display: flex;
    gap: 6px;
    align-items: center;
}
.vc-option-row input { flex: 1; }
.vc-option-row .vc-remove-btn {
    padding: 6px 12px;
    background: #fff;
    border: 1.5px solid #f5c6cb;
    color: #c0392b;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}
.vc-add-option-btn {
    padding: 8px 16px;
    background: white;
    border: 1.5px dashed #B4C5E4;
    color: #3C3744;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
}
.vc-add-option-btn:hover { background: #f4f8ff; }

.vc-submit-btn {
    width: 100%;
    padding: 14px;
    background: #3C3744;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
}
.vc-submit-btn:hover { background: #2d2b35; }
.vc-submit-btn:disabled { background: #aaa; cursor: not-allowed; }
.vc-submit-btn.vc-danger { background: #c0392b; }
.vc-submit-btn.vc-danger:hover { background: #a32e22; }

/* ===== 상세 모달 (투표 화면) ===== */
.vd-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 18px;
}
.vd-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.vd-title {
    font-size: 21px;
    font-weight: 800;
    color: #3C3744;
    margin: 0 0 8px;
    word-break: break-word;
    line-height: 1.4;
}
.vd-meta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}
.vd-meta-row span strong { color: #3C3744; font-weight: 700; }
.vd-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    background: #f9fafc;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    white-space: pre-wrap;
    word-break: break-word;
}

.vd-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f8ff;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
}
.vd-stats-left { color: #3C3744; font-weight: 700; }
.vd-stats-right { color: #777; font-size: 12px; }

.vd-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.vd-option {
    border: 1.5px solid #e0e0e0;
    border-radius: 11px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
    overflow: hidden;
    background: white;
}
.vd-option:hover { border-color: #B4C5E4; background: #fafcff; }
.vd-option.selected {
    border-color: #3C3744;
    background: #f4f8ff;
}
.vd-option.disabled {
    cursor: default;
    opacity: 0.85;
}
.vd-option.my-vote {
    border-color: #3C3744;
}
.vd-option-row {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.vd-option-marker {
    width: 20px;
    height: 20px;
    border: 2px solid #c0c0c0;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vd-option.checkbox .vd-option-marker { border-radius: 5px; }
.vd-option.selected .vd-option-marker {
    border-color: #3C3744;
    background: #3C3744;
}
.vd-option.selected .vd-option-marker::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}
.vd-option.checkbox.selected .vd-option-marker::after {
    width: 10px;
    height: 6px;
    background: transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-radius: 0;
    transform: rotate(-45deg);
    margin-top: -3px;
}
.vd-option-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #3C3744;
    word-break: break-word;
}
.vd-option-count {
    font-size: 13px;
    color: #555;
    font-weight: 700;
    flex-shrink: 0;
}
.vd-my-badge {
    background: #3C3744;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 8px;
    margin-left: 6px;
    vertical-align: middle;
}

.vd-progress {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, #e8eef9, #d5e0f3);
    transition: width 0.6s ease;
    z-index: 0;
}
.vd-option.my-vote .vd-progress {
    background: linear-gradient(90deg, #c9d6f0, #b4c5e4);
}

.vd-blind-msg {
    background: #fff8e1;
    border: 1.5px solid #ffe082;
    border-radius: 10px;
    padding: 12px 16px;
    color: #5d4037;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.vd-action-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.vd-action-row button {
    flex: 1;
    min-width: 90px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.2s;
}
.vd-vote-btn {
    background: #3C3744;
    color: white;
    border-color: #3C3744;
}
.vd-vote-btn:hover { background: #2d2b35; }
.vd-vote-btn:disabled { background: #aaa; border-color: #aaa; cursor: not-allowed; }
.vd-cancel-btn {
    background: white;
    color: #777;
    border-color: #d0d0d0;
}
.vd-cancel-btn:hover { color: #3C3744; border-color: #3C3744; }
.vd-delete-btn {
    background: white;
    color: #c0392b;
    border-color: #f5c6cb;
}
.vd-delete-btn:hover { background: #fff5f5; }

.vd-closed-notice {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    color: #888;
    font-size: 13px;
    font-weight: 600;
}

/* ===== 추천 / 비추천 / 신고 바 ===== */
.vd-reactions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #eee;
    flex-wrap: wrap;
}
.vd-react-btn {
    flex: 1;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid #e0e0e0;
    background: white;
    color: #555;
    transition: all 0.15s;
}
.vd-react-btn:hover:not(:disabled) {
    border-color: #B4C5E4;
    background: #fafcff;
}
.vd-react-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.vd-react-icon { font-size: 16px; line-height: 1; }
.vd-react-label { font-weight: 700; }
.vd-react-count { font-weight: 700; color: #888; }

.vd-react-btn.vd-like.active {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #0d47a1;
}
.vd-react-btn.vd-like.active .vd-react-count { color: #0d47a1; }

.vd-react-btn.vd-dislike.active {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}
.vd-react-btn.vd-dislike.active .vd-react-count { color: #e65100; }

.vd-react-btn.vd-report.active {
    background: #fff5f5;
    border-color: #f5c6cb;
    color: #c0392b;
}
.vd-react-btn.vd-report:not(.active):hover {
    border-color: #f5c6cb;
    background: #fff8f8;
    color: #c0392b;
}

.vd-react-btn.vd-share:hover {
    background: #f0f4ff;
    border-color: #B4C5E4;
    color: #3C3744;
}

/* 게시자 관리 (수정/삭제) */
.vd-manage-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.vd-manage-row > button {
    flex: 1;
    min-width: 140px;
    padding: 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: white;
    transition: all 0.15s;
}
.vd-edit-btn {
    color: #3C3744;
    border: 1.5px solid #B4C5E4;
}
.vd-edit-btn:hover {
    background: #f0f4ff;
    border-color: #3C3744;
}
.vd-delete-btn-full {
    color: #c0392b;
    border: 1.5px solid #f5c6cb;
}
.vd-delete-btn-full:hover {
    background: #fff5f5;
    border-color: #c0392b;
}
.vd-manage-hint {
    margin-top: 8px;
    font-size: 11px;
    color: #999;
    text-align: center;
}

/* ===== 뷰 토글 ===== */
.vd-view-toggle {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.vd-view-btn {
    padding: 6px 12px;
    border: 1.5px solid #e0e0e0;
    background: white;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s;
}
.vd-view-btn:hover {
    border-color: #B4C5E4;
    color: #3C3744;
}
.vd-view-btn.active {
    background: #3C3744;
    color: white;
    border-color: #3C3744;
}

/* ===== 메달 ===== */
.vd-medal {
    display: inline-block;
    font-size: 16px;
    margin-right: 4px;
    line-height: 1;
}

/* ===== 도넛 차트 ===== */
.vd-donut-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.vd-donut {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 12px rgba(60, 55, 68, 0.1);
}
.vd-donut-hole {
    position: absolute;
    inset: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vd-donut-total {
    font-size: 28px;
    font-weight: 800;
    color: #3C3744;
    line-height: 1;
}
.vd-donut-label {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.vd-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}
.vd-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f9fafc;
    border-radius: 8px;
    font-size: 13px;
    color: #3C3744;
}
.vd-legend-item.my-vote {
    background: #f0f4ff;
    border: 1.5px solid #B4C5E4;
}
.vd-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.vd-legend-text {
    flex: 1;
    font-weight: 600;
    word-break: break-word;
}
.vd-legend-count {
    font-weight: 700;
    color: #555;
    flex-shrink: 0;
}

/* ===== OX 양분 게이지 ===== */
.vd-gauge-wrap {
    margin-bottom: 18px;
    background: #f9fafc;
    padding: 18px 20px;
    border-radius: 12px;
}
.vd-gauge-bar {
    display: flex;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.vd-gauge-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
    min-width: 0;
    transition: flex 0.4s ease;
    overflow: hidden;
}
.vd-gauge-pct {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.vd-gauge-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 14px;
}
.vd-gauge-label-left, .vd-gauge-label-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vd-gauge-label-left.my-vote, .vd-gauge-label-right.my-vote {
    background: #f0f4ff;
    padding: 4px 10px;
    border-radius: 16px;
    border: 1.5px solid #B4C5E4;
}
.vd-gauge-count {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

/* ===== "내 선택" 안내 ===== */
.vd-my-choice {
    background: #f0f4ff;
    border: 1.5px solid #B4C5E4;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: #3C3744;
    margin-bottom: 14px;
}
.vd-my-choice strong {
    color: #1565c0;
    font-weight: 800;
}

/* ===== 추천/비추천 게이지 ===== */
.vd-likegauge {
    margin-top: 14px;
    padding: 12px 14px;
    background: #fafbfc;
    border-radius: 10px;
}
.vd-likegauge-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
}
.vd-likegauge-pct {
    color: #1565c0;
    font-weight: 800;
}
.vd-likegauge-bar {
    height: 8px;
    background: #ffe0b2;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.vd-likegauge-fill {
    height: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    transition: width 0.4s ease;
}

@media (max-width: 600px) {
    .vd-donut-wrap { flex-direction: column; gap: 16px; }
    .vd-donut { width: 160px; height: 160px; }
    .vd-donut-hole { inset: 32px; }
    .vd-donut-total { font-size: 24px; }
    .vd-gauge-bar { height: 40px; }
    .vd-gauge-segment { font-size: 14px; }
}

/* ===== 모바일 ===== */
@media (max-width: 900px) {
    .vote-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .vote-grid { grid-template-columns: 1fr; }
    .vote-header { flex-direction: column; align-items: stretch; }
    .vote-create-btn { width: 100%; }
    .filter-right { margin-left: 0; width: 100%; flex-wrap: wrap; }
    .filter-sort { flex: 1; min-width: 100px; }
    .filter-search { flex: 2; min-width: 180px; }
    .filter-search input { flex: 1; width: auto; min-width: 0; }
    .vc-row { flex-direction: column; align-items: stretch; gap: 0; }
    .vote-modal-content { padding: 24px 18px; }
    .vd-title { font-size: 18px; }
}
