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

/* ===== 2컬럼 자체 그리드 레이아웃 ===== */
.jvr-main-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    align-items: start;
}

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

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

/* ===== 공통 섹션 ===== */
.jvr-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;
}

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

.jvr-section + .jvr-section {
    margin-top: 14px;
}

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

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

/* ===== 탭 (3개 → grid) ===== */
.jvr-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    background: #f5f3f0;
    border-radius: 8px;
    padding: 3px;
}

.jvr-tab {
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #7a756d;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}

.jvr-tab:hover {
    color: #2d2a26;
}

.jvr-tab.active {
    background: #fff;
    color: #d4af37;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ===== 탭 패널 ===== */
.jvr-tab-content {
    display: none;
}

.jvr-tab-content.active {
    display: block;
}

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

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

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

.jvr-input-label .jvr-label-hint {
    font-weight: 400;
    color: #9e9a96;
    margin-left: 4px;
}

.jvr-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;
}

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

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

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

.jvr-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;
}

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

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

.jvr-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;
}

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

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

.jvr-korean-amount {
    font-size: 11px;
    color: #d4af37;
    margin-top: 4px;
    text-align: right;
    min-height: 16px;
}

.jvr-hint {
    font-size: 11px;
    color: #9e9a96;
    margin-top: 4px;
}

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

.jvr-checkbox-label:hover {
    border-color: #d4af37;
}

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

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

/* ===== 금리 프리셋 버튼 ===== */
.jvr-rate-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 6px;
}

.jvr-rate-preset {
    padding: 6px 4px;
    font-size: 11px;
    color: #7a756d;
    background: #f5f3f0;
    border: 1px solid #e8e4dc;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}

.jvr-rate-preset:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.jvr-rate-preset.active {
    background: #fdfbf5;
    border-color: #d4af37;
    color: #d4af37;
    font-weight: 600;
}

/* ===== 대출 영역 (조건부 표시) ===== */
.jvr-loan-area {
    margin-top: 8px;
    padding: 12px;
    background: #faf9f7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
}

.jvr-loan-area .jvr-input-group:first-child {
    margin-top: 0;
}

/* ===== 고급 옵션 (접이식) ===== */
.jvr-advanced-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    color: #9e9a96;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.jvr-advanced-toggle:hover {
    color: #d4af37;
}

.jvr-advanced-toggle i {
    transition: transform 0.2s;
    font-size: 10px;
}

.jvr-advanced-toggle.open i {
    transform: rotate(180deg);
}

.jvr-advanced-area {
    display: none;
    padding-top: 8px;
}

.jvr-advanced-area.open {
    display: block;
}

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

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

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

/* ===== 버튼 ===== */
.jvr-btn-group {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.jvr-calculate-btn {
    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);
}

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

.jvr-reset-btn {
    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;
}

.jvr-reset-btn:hover {
    background: #eae7e3;
}

/* ===== 숨김 클래스 ===== */
.jvr-hidden {
    display: none !important;
}

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

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

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

/* ===== 결과 - 요약 카드 ===== */
.jvr-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);
}

.jvr-summary-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
}

.jvr-badge-jeonse {
    background: #e8f0fe;
    color: #1967d2;
}

.jvr-badge-monthly {
    background: #fce8e6;
    color: #c5221f;
}

.jvr-badge-even {
    background: #f5f3f0;
    color: #5f5a56;
}

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

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

.jvr-summary-label {
    font-size: 13px;
    color: #5f5a56;
    margin-bottom: 16px;
}

.jvr-summary-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8e4dc;
}

.jvr-compare-item {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
}

.jvr-compare-jeonse {
    background: #eef3fc;
}

.jvr-compare-monthly {
    background: #fdf0ef;
}

.jvr-compare-item-label {
    font-size: 11px;
    color: #7a756d;
    margin-bottom: 4px;
}

.jvr-compare-item-value {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.jvr-compare-jeonse .jvr-compare-item-value {
    color: #1967d2;
}

.jvr-compare-monthly .jvr-compare-item-value {
    color: #c5221f;
}

/* ===== 상세 내역 ===== */
.jvr-detail-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

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

.jvr-detail-title i {
    color: #d4af37;
}

.jvr-detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jvr-detail-column-title {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jvr-detail-col-jeonse .jvr-detail-column-title {
    background: #eef3fc;
    color: #1967d2;
}

.jvr-detail-col-monthly .jvr-detail-column-title {
    background: #fdf0ef;
    color: #c5221f;
}

.jvr-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid #f5f3f0;
}

.jvr-detail-row:last-child {
    border-bottom: none;
}

.jvr-detail-row-label {
    color: #7a756d;
}

.jvr-detail-row-value {
    font-weight: 600;
    color: #2d2a26;
}

.jvr-detail-row.jvr-detail-total {
    border-top: 2px solid #e8e4dc;
    border-bottom: none;
    padding-top: 8px;
    margin-top: 4px;
    font-size: 13px;
}

.jvr-detail-col-jeonse .jvr-detail-total .jvr-detail-row-value {
    color: #1967d2;
    font-weight: 700;
}

.jvr-detail-col-monthly .jvr-detail-total .jvr-detail-row-value {
    color: #c5221f;
    font-weight: 700;
}

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

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

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

.jvr-chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jvr-chart-item {
    text-align: center;
}

.jvr-chart-item-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.jvr-chart-item-label.jvr-label-jeonse {
    color: #1967d2;
}

.jvr-chart-item-label.jvr-label-monthly {
    color: #c5221f;
}

.jvr-donut-wrap {
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
}

.jvr-chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 11px;
    color: #5f5a56;
}

.jvr-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.jvr-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

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

.jvr-tip-card {
    padding: 12px 14px;
    background: #fdfbf5;
    border: 1px solid #e8dfc0;
    border-radius: 8px;
    font-size: 12px;
    color: #5f5a56;
    line-height: 1.5;
    transition: box-shadow 0.2s;
}

.jvr-tip-card:hover {
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.jvr-tip-card + .jvr-tip-card {
    margin-top: 8px;
}

.jvr-tip-card strong {
    color: #2d2a26;
}

/* ===== 손익분기점 결과 ===== */
.jvr-bep-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);
    text-align: center;
}

.jvr-bep-number {
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.jvr-bep-unit {
    font-size: 18px;
    font-weight: 500;
    color: #7a756d;
    margin-left: 4px;
}

.jvr-bep-desc {
    font-size: 13px;
    color: #5f5a56;
    margin-top: 8px;
}

.jvr-bep-highlight {
    color: #d4af37;
    font-weight: 600;
}

/* ===== 손익분기점 차트 ===== */
.jvr-bep-chart-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

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

.jvr-bep-chart-title i {
    color: #d4af37;
}

.jvr-bep-chart-wrap {
    position: relative;
    width: 100%;
    height: 280px;
}

.jvr-bep-chart-wrap canvas {
    max-height: 280px;
}

/* ===== 해석 메시지 ===== */
.jvr-bep-message {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.jvr-bep-message-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d2a26;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jvr-bep-message-title i {
    color: #d4af37;
}

.jvr-bep-message-text {
    font-size: 13px;
    color: #5f5a56;
    line-height: 1.6;
}

/* ===== 엑셀 다운로드 버튼 ===== */
.jvr-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: #217346;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.jvr-download-btn:hover {
    background: #1a5c38;
}

.jvr-schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

/* ===== 라디오 그룹 ===== */
.jvr-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.jvr-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: #5f5a56;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.jvr-radio-label input[type="radio"]:checked + span {
    font-weight: 600;
    color: #2d2a26;
}

.jvr-radio-label:has(input[type="radio"]:checked) {
    border-color: #d4af37;
    background: #fdfbf5;
}

/* ===== 전환 계산 결과 ===== */
.jvr-conversion-result {
    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);
    text-align: center;
}

.jvr-conversion-label {
    font-size: 13px;
    color: #7a756d;
    margin-bottom: 8px;
}

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

.jvr-conversion-sub {
    font-size: 14px;
    color: #9e9a96;
    margin-top: 4px;
}

/* ===== 전환율 참고표 ===== */
.jvr-rate-table {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

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

.jvr-rate-title i {
    color: #d4af37;
}

.jvr-rate-reference {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.jvr-rate-reference thead {
    background: #f5f3f0;
}

.jvr-rate-reference th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    color: #2d2a26;
    border-bottom: 2px solid #e8e4dc;
}

.jvr-rate-reference td {
    padding: 8px 12px;
    color: #5f5a56;
    border-bottom: 1px solid #f5f3f0;
}

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

.jvr-rate-reference tbody tr:last-child td {
    border-bottom: none;
}

.jvr-rate-reference tbody tr:hover {
    background: #fdfbf5;
}

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

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

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
    .jvr-section,
    .jvr-amount-input,
    .jvr-number-input,
    .jvr-select,
    .jvr-calculate-btn,
    .jvr-tip-card {
        transition: none !important;
    }
    .jvr-section:hover,
    .jvr-tip-card:hover,
    .jvr-calculate-btn:hover {
        transform: none !important;
    }
}

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

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

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

    .tool-layout-input {
        max-width: 100%;
        overflow: hidden;
    }

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

    .jvr-summary-main {
        font-size: 24px;
    }

    .jvr-detail-columns {
        grid-template-columns: 1fr;
    }

    .jvr-chart-grid {
        grid-template-columns: 1fr;
    }

    .jvr-bep-number {
        font-size: 34px;
    }
}

/* ===== 반응형 480px ===== */
@media (max-width: 480px) {
    .tool-section,
    .tool-layout-split,
    .tool-layout-input,
    .tool-layout-result {
        max-width: 100%;
        overflow-x: hidden;
    }

    .jvr-section {
        padding: 12px;
    }

    .jvr-result-summary,
    .jvr-bep-summary {
        padding: 16px;
    }

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

    .jvr-compare-item-value {
        font-size: 15px;
    }

    .jvr-rate-presets {
        grid-template-columns: 1fr 1fr;
    }

    .jvr-bep-number {
        font-size: 28px;
    }

    .jvr-bep-chart-wrap {
        height: 220px;
    }

    .jvr-bep-chart-wrap canvas {
        max-height: 220px;
    }

    .jvr-summary-compare {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
