/* /js/v2/export-ui.v2.css */
/* Phase 6 — Professional Permit Packet Styling */

body{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color:#111;
  margin:40px;
}

h1{
  font-size:28px;
  margin-bottom:6px;
}

h2{
  font-size:18px;
  margin-top:28px;
  border-bottom:2px solid #333;
  padding-bottom:4px;
}

.cc-subtitle{
  font-size:13px;
  color:#666;
  margin-bottom:18px;
}

.cc-header-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
  margin-bottom:10px;
}

.cc-section{
  margin-top:20px;
}

.cc-bullets{
  margin-left:18px;
}

.cc-bullets li{
  margin-bottom:4px;
}

.cc-checklist{
  margin-left:18px;
}

.cc-checklist li{
  margin-bottom:6px;
}

.cc-coderefs{
  margin-left:18px;
}

.cc-coderefs li{
  margin-bottom:4px;
}

.cc-diagram{
  font-family: monospace;
  background:#f4f4f4;
  border:1px solid #ddd;
  padding:12px;
  line-height:1.4;
  margin-top:10px;
}

.cc-table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
}

.cc-table th{
  border-bottom:2px solid #333;
  text-align:left;
  padding:6px;
}

.cc-table td{
  border-bottom:1px solid #ccc;
  padding:6px;
}

.cc-trace-block{
  margin-top:10px;
  padding:8px;
  border-left:3px solid #999;
  background:#fafafa;
}

.cc-print-container{
  max-width:850px;
  margin:auto;
}

@media print{

  body{
    margin:20px;
  }

  h2{
    page-break-after:avoid;
  }

  .cc-section{
    page-break-inside:avoid;
  }

}