.bmr-calc { width: 100%; }
.bmr-radio-group { display: flex; gap: 24px; padding: 10px 0; }
.bmr-radio-label { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--text); cursor: pointer; }
.bmr-radio-label input[type="radio"] { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }
.bmr-calc .mort-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.bmr-results { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; width: 100%; }
.bmr-result-header { background: #1d4ed8; color: #fff; font-size: 15px; font-weight: 700; padding: 10px 16px; }
.bmr-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bmr-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--text2); }
.bmr-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.bmr-total-row td { background: var(--light) !important; font-weight: 700; color: var(--navy) !important; border-bottom: none; font-size: 16px; }
.bmr-note { font-size: 12.5px; color: var(--muted); padding: 10px 16px; margin: 0; line-height: 1.6; }
@media (max-width: 768px) { .bmr-calc .mort-layout { grid-template-columns: 1fr; } }
