﻿  #property-cost-calculator.prop-wrapper {
    max-width: 960px;
    margin: 30px auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  }

  .prop-intro {
    margin-bottom: 16px;
    color: #555;
  }

  .prop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }

  .prop-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .prop-field input, .prop-field select {
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid #d3d7e0;
    font-size: 0.95rem;
  }

  .prop-field small {
    font-size: 0.8rem;
    color: #777;
  }

  .prop-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
  }

  .prop-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
  }

  .prop-btn.primary {
    background: #0077c8;
    color: #fff;
  }

  .prop-btn.secondary {
    background: #f3f4f6;
    color: #333;
  }

  .prop-result {
    margin-top: 20px;
    padding: 16px;
    background: #f9fafc;
    border-radius: 12px;
    border: 1px solid #e4e6ef;
  }

  .prop-summary {
    margin-bottom: 16px;
  }

  .prop-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  .prop-table th, .prop-table td {
    border: 1px solid #e4e7f0;
    padding: 8px 10px;
  }

  .prop-table th {

  }

  .prop-total td {
    background: #fff7d6;
  }

  .prop-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #666;
  }

  @media (max-width: 700px) {
    .prop-grid {
      grid-template-columns: 1fr;
    }
  }




  .prop-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .prop-compare-table th,
  .prop-compare-table td {
    border: 1px solid #e4e7f0;
    padding: 8px 10px;
    vertical-align: top;
    text-align: left;
  }
  .prop-compare-table th {
    font-weight: 600;
  }
  .prop-compare-table tbody tr:nth-child(odd) {
    background: #fafbff;
  }


  .prop-legal-tabs .tabs {
    margin-top: 12px;
  }

  .prop-legal-tabs input[type="radio"] {
    display: none;
  }

  .prop-legal-tabs label {
    display: inline-block;
    padding: 8px 14px;
    margin-right: 6px;
    border-radius: 999px;
    background: #f3f4f6;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .prop-legal-tabs input[type="radio"]:checked + label {
    background: #0077c8;
    color: #fff;
  }

  .prop-legal-tabs .tab-content {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    background: #f9fafc;
    border-radius: 12px;
    border: 1px solid #e4e6ef;
    font-size: 0.9rem;
  }

  #tab1:checked ~ #content1,
  #tab2:checked ~ #content2,
  #tab3:checked ~ #content3 {
    display: block;
  }
