*{box-sizing:border-box;}
body{
  margin:0;
  font-family:'Poppins',Arial,sans-serif;
  background:#e8f1ff;
  color:#333;
}
.topnav{
  background:#246BFD;
  color:#fff;
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.topnav .brand{
  font-weight:600;
}
.topnav nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.topnav nav a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  padding:4px 8px;
  border-radius:6px;
}
.topnav nav a.active{
  background:rgba(255,255,255,0.2);
}
.btn-ghost{
  background:transparent;
  border:1px solid #fff;
  border-radius:6px;
  padding:3px 8px;
  color:#fff;
  cursor:pointer;
}
.hero{
  padding:50px 20px 30px;
  text-align:center;
}
.hero-text h1{
  font-size:28px;
  margin-bottom:10px;
}
.hero-text p{
  max-width:600px;
  margin:0 auto 20px;
}
.btn-primary,.btn-secondary,.btn-success{
  display:inline-block;
  border:none;
  border-radius:999px;
  padding:10px 20px;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
}
.btn-primary{
  background:#246BFD;
  color:#fff;
}
.btn-secondary{
  background:#fff;
  color:#246BFD;
  border:1px solid #246BFD;
}
.btn-success{
  background:#00b894;
  color:#fff;
}
.hero-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
  padding:0 20px 30px;
}
.info-card{
  background:#fff;
  border-radius:12px;
  padding:15px;
  box-shadow:0 4px 10px rgba(0,0,0,0.06);
}

.container{
  max-width:960px;
  margin:20px auto;
  padding:0 15px;
}
.card{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  margin-bottom:20px;
}
.center{text-align:center;}
.subtitle{
  font-size:13px;
  color:#555;
  margin-bottom:15px;
}
.input-box{
  margin-bottom:12px;
}
.input-box label{
  display:block;
  font-weight:500;
  margin-bottom:4px;
}
.input-box input,
.input-box select,
.input-box textarea{
  width:100%;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid #cfd8ff;
  font-size:14px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
@media(max-width:768px){
  .grid-2,.grid-3{grid-template-columns:1fr;}
  .topnav{flex-direction:column;align-items:flex-start;gap:8px;}
}

.wizard-step{
  display:none;
  transition:transform 0.3s ease, opacity 0.3s ease;
}
.wizard-step.active{
  display:block;
}
#wizard-progress{
  width:100%;
  background:#d7e0ff;
  border-radius:999px;
  overflow:hidden;
  height:6px;
  margin:10px 0 20px;
}
#wizard-bar{
  height:100%;
  width:10%;
  background:#00b894;
  transition:width 0.3s ease;
}
.option-list label{
  display:block;
  background:#f5f8ff;
  border-radius:8px;
  padding:6px 10px;
  margin-bottom:6px;
  border:1px solid #d7e0ff;
  font-size:14px;
}
.option-list input{margin-right:6px;}

.wizard-nav{
  margin-top:15px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.table-wrap{
  overflow-x:auto;
}
table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}
th,td{
  border:1px solid #dfe6ff;
  padding:6px 8px;
}
th{
  background:#246BFD;
  color:#fff;
}
tbody tr:nth-child(even){
  background:#f8f9ff;
}
.big-number{
  font-size:24px;
  font-weight:600;
  margin-top:5px;
}
.filter-form{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:12px;
}
.filter-form label{
  font-size:12px;
}
.filter-form input{
  padding:4px 6px;
  border-radius:6px;
  border:1px solid #cfd8ff;
  font-size:12px;
}
.center-link{
  text-align:center;
  margin-top:10px;
}
.center-link a{
  color:#246BFD;
  text-decoration:none;
}
.center-link a:hover{text-decoration:underline;}

.saran-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.saran-item{
  background:#f5f8ff;
  border-radius:10px;
  padding:10px 12px;
}
.saran-meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:4px;
}
.saran-meta .badge{
  background:#246BFD;
  color:#fff;
  border-radius:999px;
  padding:2px 8px;
}
.saran-meta .nama{
  font-weight:500;
}
