/* PVSTOP Coverage Calculator styles (v1.8) */

.pvstop-calc-shell{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.pvstop-calc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 820px){
  .pvstop-calc-grid{ grid-template-columns: 1fr 1fr; }
}

/* Left form */
#pvstop-calculator{
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

#pvstop-calculator label{
  display:block;
  margin: 0 0 6px;
  font-weight: 700;
}

#pvstop-calculator input{
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 14px;
  padding: 11px 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

/* Buttons */
.pvstop-btn{
  display:inline-block;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color:#fff;
  cursor:pointer;
  font-weight: 700;
}
.pvstop-btn:hover{ opacity: .9; }

.pvstop-btn-secondary{
  margin-top: 14px;
}

/* Right assumptions card */
.pvstop-card{
  background:#fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 16px 18px;
}

.pvstop-card-title{
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
}

ul.pvstop-bullets{
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

ul.pvstop-bullets li{
  margin-bottom: 8px;
  color: #333;
}

.pvstop-assumptions-foot{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  color:#333;
}

/* Results */
.pvstop-results{
  margin-top: 18px;
}

.pvstop-error{
  padding: 12px 14px;
  border: 1px solid #d33;
  border-radius: 10px;
  background:#fff5f5;
  color:#900;
  font-weight: 700;
}

/* Report */
.pvstop-report{
  background:#fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 18px;
}

.pvstop-report-header{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 6px;
}

.pvstop-report-logo{
  height: 34px;
  width:auto;
}

.pvstop-report-title{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .2px;
}

.pvstop-report-sub{
  margin: 10px 0 12px;
  font-weight: 800;
}

.pvstop-report-table{
  border: 1px solid #111;
  border-radius: 4px;
  overflow: hidden;
}

.pvstop-report-row{
  display:flex;
  border-top: 1px solid #111;
}

.pvstop-report-row:first-child{ border-top: 0; }

.pvstop-report-label{
  flex: 1;
  padding: 12px;
  border-right: 1px solid #111;
  font-weight: 700;
}

.pvstop-report-value{
  width: 280px;
  padding: 12px;
}

.pvstop-report-how{
  margin-top: 16px;
}

.pvstop-report-section-title{
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pvstop-muted{ color:#333; }

@media (max-width: 500px){
  .pvstop-report-value{ width: 46%; }
  .pvstop-report-title{ font-size: 24px; }
}
