/* Styles */
.scw-form{max-width:700px;margin:28px auto;background:#fff;padding:24px;border-radius:10px;box-shadow:0 8px 24px rgba(19,24,32,0.06);font-family:system-ui,Arial,Helvetica,sans-serif}
.scw-progress{margin-bottom:18px}
.scw-steps{display:flex;gap:12px;justify-content:space-between;align-items:center}
.scw-step-indicator{flex:1;display:flex;flex-direction:column;align-items:center;color:#9aa3ae}
.scw-step-indicator .num{display:inline-block;width:38px;height:38px;border-radius:50%;background:#e6eef8;color:#0b63b6;display:flex;align-items:center;justify-content:center;font-weight:700;margin-bottom:6px}
.scw-step-indicator .label{font-size:0.85rem}
.scw-step-indicator.scw-step-complete .num{background:#12a454;color:#fff}
.scw-step-indicator.scw-step-current{color:#0b63b6}
.scw-step-indicator.scw-step-current .num{background:#0b63b6;color:#fff}

.scw-step{display:block}
.scw-step h3{text-align:left;margin-bottom:12px}
.scw-step input,.scw-step select{width:100%;padding:10px;margin:8px 0;border:1px solid #e3e7ea;border-radius:8px;font-size:1rem}
.scw-label{font-weight:600;margin-top:8px;display:block}
.scw-summary-box{background:#f9fafb;padding:12px;border-radius:8px;border:1px solid #eef2f5}

.scw-buttons{margin-top:18px;display:flex;justify-content:space-between;gap:10px}
.scw-buttons button{padding:10px 18px;border-radius:8px;border:none;background:#0b63b6;color:#fff;font-weight:600;cursor:pointer}
.scw-buttons button:hover{opacity:0.95}
.scw-buttons > div{flex:1}

.scw-success,.scw-cancel{max-width:700px;margin:30px auto;background:#fff;padding:20px;border-radius:10px;box-shadow:0 4px 10px rgba(0,0,0,0.06)}

/* Responsive: on small screens show only circles */
@media (max-width:480px){
  .scw-steps{gap:8px}
  .scw-step-indicator .label{display:none}
  .scw-step-indicator .num{width:32px;height:32px}
}

/* Fix for Step 2 shrinking issue */
.scw-step select {
  display: block;
  width: 100% !important;
  max-width: 400px;
  min-width: 250px;
  box-sizing: border-box;
}