/**
 * Jeonse vs Wolse Calculator Styles
 * 전세 vs 월세 비교 계산기 전용 스타일
 *
 * @package Zipper
 */

/* ===== 2컬럼 레이아웃 (데스크탑) ===== */
.jvw-main-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    align-items: start;
}

.jvw-input-col {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.jvw-result-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== 공통 섹션 ===== */
.jvw-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
    transition: box-shadow 0.2s ease;
}

.jvw-section:hover {
    box-shadow: 0 2px 8px rgba(45, 42, 38, 0.1);
}

.jvw-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d2a26;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jvw-section-title i {
    color: #d4af37;
    font-size: 15px;
}

/* ===== 탭 ===== */
.jvw-tabs {
    display: flex;
    gap: 4px;
    background: #f5f3f0;
    border-radius: 8px;
    padding: 3px;
}

.jvw-tab {
    flex: 1;
    padding: 10px 6px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #9e9a96;
    cursor: pointer;
    transition: all 0.2s;
}

.jvw-tab:hover {
    color: #5f5a56;
}

.jvw-tab.active {
    background: #fff;
    color: #d4af37;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

/* ===== 탭 콘텐츠 ===== */
.jvw-tab-panel {
    display: none;
}

.jvw-tab-panel.active {
    display: block;
}

/* 탭 래퍼 내부 간격 */
.jvw-tab-panel .jvw-section + .jvw-section {
    margin-top: 14px;
}

.jvw-tab-panel .jvw-btn-group {
    margin-top: 14px;
}

/* ===== 입력 그룹 ===== */
.jvw-input-group {
    margin-bottom: 12px;
    max-width: 100%;
    box-sizing: border-box;
}

.jvw-input-group:last-child {
    margin-bottom: 0;
}

.jvw-input-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #5f5a56;
    margin-bottom: 6px;
}

.jvw-input-group .jvw-sub-label {
    font-weight: 400;
    color: #9e9a96;
    margin-left: 4px;
}

.jvw-amount-input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    color: #2d2a26;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.jvw-amount-input:hover {
    border-color: #d4c67a;
}

.jvw-amount-input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.jvw-amount-input::placeholder {
    font-weight: 400;
    color: #c4c0bc;
}

.jvw-number-input {
    width: 80px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    color: #2d2a26;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.jvw-number-input:hover {
    border-color: #d4c67a;
}

.jvw-number-input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.jvw-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    color: #2d2a26;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235f5a56' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.jvw-select:hover {
    border-color: #d4c67a;
}

.jvw-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.jvw-kr-display {
    font-size: 11px;
    color: #d4af37;
    margin-top: 4px;
    text-align: right;
    min-height: 16px;
}

.jvw-help-text {
    font-size: 11px;
    color: #9e9a96;
    margin-top: 4px;
}

/* ===== 라디오 버튼 (가로 pill 스타일) ===== */
.jvw-radio-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.jvw-radio-group input[type="radio"] {
    display: none;
}

.jvw-radio-group label {
    flex: 1;
    min-width: 100px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: #5f5a56;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    cursor: pointer;
    transition: all 0.2s;
}

.jvw-radio-group label:hover {
    border-color: #d4af37;
}

.jvw-radio-group input[type="radio"]:checked + label {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fdfbf5 0%, #faf6ec 100%);
    color: #d4af37;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

/* ===== 체크박스 ===== */
.jvw-checkbox-group {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 12px;
    color: #5f5a56;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.jvw-checkbox-group:hover {
    border-color: #d4af37;
}

.jvw-checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #d4af37;
    flex-shrink: 0;
}

.jvw-checkbox-group.active {
    border-color: #d4af37;
    background: #fdfbf5;
    color: #2d2a26;
    font-weight: 500;
}

/* ===== 방향 토글 (전세→월세 / 월세→전세) ===== */
.jvw-toggle-direction {
    display: flex;
    gap: 4px;
    background: #f5f3f0;
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 12px;
}

.jvw-toggle-direction button {
    flex: 1;
    padding: 8px 6px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #9e9a96;
    cursor: pointer;
    transition: all 0.2s;
}

.jvw-toggle-direction button:hover {
    color: #5f5a56;
}

.jvw-toggle-direction button.active {
    background: #fff;
    color: #d4af37;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

/* ===== 인라인 그룹 ===== */
.jvw-inline-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jvw-inline-group label {
    margin-bottom: 0;
    white-space: nowrap;
}

.jvw-inline-group .jvw-unit {
    font-size: 12px;
    color: #5f5a56;
    white-space: nowrap;
}

/* ===== 버튼 ===== */
.jvw-btn-group {
    display: flex;
    gap: 8px;
}

.jvw-btn-primary {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #c9a030);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}

.jvw-btn-primary:hover {
    background: linear-gradient(135deg, #c9a030, #b8922a);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.jvw-btn-secondary {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #5f5a56;
    background: #f5f3f0;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.jvw-btn-secondary:hover {
    background: #eae7e3;
}

/* ===== 결과 - 대기 영역 ===== */
.jvw-waiting {
    text-align: center;
    padding: 40px 20px;
    color: #9e9a96;
}

.jvw-waiting i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: #d4af37;
    opacity: 0.4;
}

.jvw-waiting p {
    font-size: 13px;
    margin: 0;
}

/* ===== 결과 - 요약 카드 ===== */
.jvw-result-summary {
    background: linear-gradient(135deg, #fdfbf5 0%, #faf6ec 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.12);
}

.jvw-result-summary .jvw-summary-title {
    font-size: 12px;
    color: #7a756d;
    margin-bottom: 8px;
}

.jvw-result-summary .jvw-summary-main {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 4px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.jvw-result-summary .jvw-summary-sub {
    font-size: 13px;
    color: #5f5a56;
    margin-bottom: 16px;
}

.jvw-result-summary .jvw-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.jvw-result-summary .jvw-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #e8e4dc;
    font-size: 13px;
}

.jvw-result-summary .jvw-summary-row-label {
    color: #7a756d;
}

.jvw-result-summary .jvw-summary-row-value {
    font-weight: 600;
    color: #2d2a26;
}

/* ===== 결과 - 추천 카드 (전세 유리 / 월세 유리) ===== */
.jvw-recommend-card {
    background: #fff;
    border: 2px solid #e8e4dc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    text-align: center;
}

.jvw-recommend-card.jeonse {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #2196f3;
}

.jvw-recommend-card.wolse {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ff9800;
}

.jvw-recommend-card .jvw-recommend-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.jvw-recommend-card.jeonse .jvw-recommend-title {
    color: #1976d2;
}

.jvw-recommend-card.wolse .jvw-recommend-title {
    color: #f57c00;
}

.jvw-recommend-card .jvw-recommend-amount {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.jvw-recommend-card.jeonse .jvw-recommend-amount {
    color: #1565c0;
}

.jvw-recommend-card.wolse .jvw-recommend-amount {
    color: #e65100;
}

.jvw-recommend-card .jvw-recommend-desc {
    font-size: 12px;
    color: #5f5a56;
    line-height: 1.5;
}

/* ===== 결과 - 비교 테이블 (전세 vs 월세) ===== */
.jvw-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    overflow: hidden;
}

.jvw-compare-table th {
    padding: 12px 14px;
    background: #faf9f7;
    border-bottom: 2px solid #e8e4dc;
    font-weight: 600;
    color: #5f5a56;
    text-align: left;
}

.jvw-compare-table th:first-child {
    width: 40%;
}

.jvw-compare-table .jeonse-col {
    background: #e3f2fd;
    color: #1565c0;
    font-weight: 600;
    text-align: center;
}

.jvw-compare-table .wolse-col {
    background: #fff3e0;
    color: #e65100;
    font-weight: 600;
    text-align: center;
}

.jvw-compare-table .diff-col {
    background: #fdfbf5;
    color: #d4af37;
    font-weight: 700;
    text-align: center;
}

.jvw-compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f0ede8;
    color: #2d2a26;
}

.jvw-compare-table td:not(:first-child) {
    text-align: right;
    font-weight: 600;
}

.jvw-compare-table tbody tr:hover td {
    background: #faf9f7;
}

.jvw-compare-table tr:last-child td {
    border-bottom: none;
}

.jvw-compare-table .jvw-highlight-row {
    background: #fdfbf5;
}

.jvw-compare-table .jvw-highlight-row td {
    color: #d4af37;
    font-weight: 700;
    font-size: 14px;
}

/* ===== 결과 - 전환 결과 (전세→월세, 월세→전세) ===== */
.jvw-conversion-result {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.jvw-conversion-result .jvw-conversion-label {
    font-size: 13px;
    color: #7a756d;
    margin-bottom: 10px;
}

.jvw-conversion-amount {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.jvw-conversion-result .jvw-conversion-sub {
    font-size: 14px;
    color: #5f5a56;
}

.jvw-conversion-result .jvw-conversion-formula {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8e4dc;
    font-size: 12px;
    color: #9e9a96;
    line-height: 1.6;
}

/* ===== 지역별 전환율 테이블 ===== */
.jvw-rate-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    overflow: hidden;
}

.jvw-rate-table th {
    padding: 10px 12px;
    background: #faf9f7;
    border-bottom: 1px solid #e8e4dc;
    font-weight: 600;
    color: #5f5a56;
    text-align: left;
}

.jvw-rate-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0ede8;
    color: #2d2a26;
}

.jvw-rate-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #d4af37;
}

.jvw-rate-table tr:last-child td {
    border-bottom: none;
}

.jvw-rate-table tbody tr:hover td {
    background: #faf9f7;
}

/* ===== 차트 섹션 ===== */
.jvw-chart-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.jvw-chart-section .jvw-chart-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d2a26;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jvw-chart-section .jvw-chart-title i {
    color: #d4af37;
}

.jvw-chart-wrap {
    position: relative;
    width: 100%;
    max-height: 300px;
    margin: 0 auto;
}

.jvw-chart-wrap canvas {
    max-height: 300px;
}

.jvw-donut-wrap {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 280px;
    margin: 0 auto;
}

.jvw-chart-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.jvw-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5f5a56;
}

.jvw-legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== 인사이트 박스 ===== */
.jvw-insight-box {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 14px 16px;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 3px solid #2196f3;
    border-radius: 8px;
    margin-top: 12px;
}

.jvw-insight-box i {
    font-size: 16px;
    color: #2196f3;
    flex-shrink: 0;
    margin-top: 1px;
}

.jvw-insight-box .jvw-insight-content {
    font-size: 12px;
    color: #0d47a1;
    line-height: 1.5;
    font-weight: 500;
}

.jvw-insight-box .jvw-insight-title {
    font-weight: 600;
    margin-bottom: 4px;
}

/* ===== 경고 박스 ===== */
.jvw-warning-box {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 12px 14px;
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-left: 3px solid #e67e22;
    border-radius: 8px;
    margin-top: 12px;
}

.jvw-warning-box i {
    font-size: 16px;
    color: #e67e22;
    flex-shrink: 0;
    margin-top: 1px;
}

.jvw-warning-box span {
    font-size: 12px;
    color: #e65100;
    line-height: 1.5;
    font-weight: 500;
}

/* ===== 정보 박스 ===== */
.jvw-info-box {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 12px 14px;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 3px solid #3498db;
    border-radius: 8px;
    margin-top: 12px;
}

.jvw-info-box i {
    font-size: 16px;
    color: #3498db;
    flex-shrink: 0;
    margin-top: 1px;
}

.jvw-info-box span {
    font-size: 12px;
    color: #0d47a1;
    line-height: 1.5;
}

/* ===== 절세 팁 섹션 ===== */
.jvw-tips-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.jvw-tips-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d2a26;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jvw-tips-title i {
    color: #d4af37;
}

.jvw-tips-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jvw-tips-body .jvw-tip-item {
    display: flex;
    align-items: start;
    gap: 8px;
    padding: 10px 12px;
    background: #faf9f7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    font-size: 12px;
    color: #5f5a56;
    line-height: 1.5;
}

.jvw-tips-body .jvw-tip-item i {
    font-size: 14px;
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== 계산 흐름 테이블 ===== */
.jvw-flow-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.jvw-flow-table th {
    padding: 8px 12px;
    background: #faf9f7;
    border-bottom: 1px solid #e8e4dc;
    font-weight: 600;
    color: #5f5a56;
    text-align: left;
}

.jvw-flow-table th:last-child {
    text-align: right;
}

.jvw-flow-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0ede8;
    color: #2d2a26;
}

.jvw-flow-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.jvw-flow-table tbody tr:hover td {
    background: #faf9f7;
}

.jvw-flow-table tr:last-child td {
    border-bottom: none;
}

.jvw-flow-table .jvw-highlight-row {
    background: #fdfbf5;
    border: 1px solid #e8dfc0;
}

.jvw-flow-table .jvw-highlight-row td {
    color: #d4af37;
    font-weight: 700;
    font-size: 14px;
}

.jvw-flow-table .jvw-separator-row td {
    padding: 4px 0;
    border-bottom: 1px solid #e8e4dc;
}

/* ===== 면책 조항 ===== */
.jvw-disclaimer {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: #faf9f7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    font-size: 11px;
    color: #9e9a96;
    line-height: 1.5;
}

.jvw-disclaimer i {
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== 유틸리티 ===== */
.jvw-hidden {
    display: none !important;
}

/* ===== 인쇄 스타일 ===== */
@media print {
    .jvw-input-col {
        display: none;
    }

    .jvw-main-layout {
        grid-template-columns: 1fr;
    }

    .jvw-section,
    .jvw-result-summary,
    .jvw-recommend-card,
    .jvw-conversion-result,
    .jvw-chart-section,
    .jvw-tips-section {
        box-shadow: none;
        page-break-inside: avoid;
    }

    .jvw-compare-table {
        page-break-inside: avoid;
    }
}

/* ===== 모션 감소 접근성 ===== */
@media (prefers-reduced-motion: reduce) {
    .jvw-section,
    .jvw-amount-input,
    .jvw-select,
    .jvw-btn-primary,
    .jvw-tab,
    .jvw-radio-group label,
    .jvw-checkbox-group,
    .jvw-toggle-direction button {
        transition: none !important;
    }
    .jvw-section:hover,
    .jvw-btn-primary:hover {
        transform: none !important;
    }
}

/* ===== 반응형 ===== */
@media (max-width: 900px) {
    .jvw-main-layout {
        grid-template-columns: 1fr;
    }

    .jvw-input-col {
        position: static;
        width: 100%;
    }

    .jvw-result-col {
        width: 100%;
    }

    .jvw-input-group input:not([type="radio"]):not([type="checkbox"]),
    .jvw-input-group select {
        width: 100% !important;
        max-width: 100% !important;
    }

    .jvw-result-summary .jvw-summary-main {
        font-size: 26px;
    }

    .jvw-conversion-amount {
        font-size: 28px;
    }

    .jvw-result-summary .jvw-summary-grid {
        grid-template-columns: 1fr;
    }

    .jvw-compare-table {
        font-size: 12px;
    }

    .jvw-compare-table th,
    .jvw-compare-table td {
        padding: 10px 10px;
    }

    .jvw-radio-group {
        flex-direction: column;
    }

    .jvw-radio-group label {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .jvw-section {
        padding: 12px;
    }

    .jvw-result-summary,
    .jvw-recommend-card,
    .jvw-conversion-result {
        padding: 16px;
    }

    .jvw-result-summary .jvw-summary-main {
        font-size: 22px;
    }

    .jvw-conversion-amount {
        font-size: 24px;
    }

    .jvw-tabs {
        flex-direction: column;
    }

    .jvw-tab {
        padding: 8px 6px;
        font-size: 12px;
    }

    .jvw-toggle-direction {
        flex-direction: column;
    }

    .jvw-donut-wrap {
        max-width: 200px;
        height: 200px;
    }

    .jvw-compare-table {
        font-size: 11px;
    }

    .jvw-compare-table th,
    .jvw-compare-table td {
        padding: 8px 8px;
    }

    .jvw-flow-table {
        font-size: 11px;
    }

    .jvw-flow-table th,
    .jvw-flow-table td {
        padding: 6px 6px;
    }

    .jvw-rate-table {
        font-size: 11px;
    }

    .jvw-rate-table th,
    .jvw-rate-table td {
        padding: 8px 8px;
    }

    .jvw-chart-wrap {
        max-height: 250px;
    }

    .jvw-chart-wrap canvas {
        max-height: 250px;
    }
}
