.ap-calc { width: 100%; }
.ap-input { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: var(--font-main); color: var(--text); background: var(--white); outline: none; box-sizing: border-box; }
.ap-input:focus { border-color: var(--teal); }
.ap-calc .mort-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.ap-results { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; width: 100%; }
.ap-result-header { background: #1d4ed8; color: #fff; font-size: 15px; font-weight: 700; padding: 10px 16px; }
.ap-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ap-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--text2); }
.ap-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.ap-total-row td { background: var(--light) !important; font-weight: 700; color: var(--navy) !important; font-size: 16px; }
@media (max-width: 768px) { .ap-calc .mort-layout { grid-template-columns: 1fr; } }
