/* BASE */
.aplc-wrap{
  background:#0f1412;
  padding:24px;
  border-radius:18px;
  max-width:900px;
  margin:auto;
  font-family:system-ui;
  color:#eaeaea;
}

.aplc-heading{
  text-align:center;
  font-size:22px;
  font-weight:700;
  margin-bottom:18px;
}

.aplc-input-heading{
  font-size:14px;
  font-weight:700;
  color:#cfd6d2;
  margin-bottom:14px;
  letter-spacing:.3px;
}


/* GRID */
.aplc-grid{display:flex;gap:18px}

/* CARDS */
.aplc-card{
  background:#151c18;
  border-radius:16px;
  padding:18px;
}

.aplc-left{flex:1}
.aplc-right{
  width:300px;
  background:#0b0f0d;
  text-align:center;
}

/* LEFT */
.aplc-field{margin-bottom:16px}

.aplc-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:6px;
}

.aplc-row label{
  font-size:13px;
  font-weight:600;
  opacity:.85;
}

.aplc-mini{
  width:50px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:#2a2f2d;
  border:1px solid rgba(255,255,255,.15);
  font-size:12px;
  font-weight:700;
  color:#fff;
  outline:none;
}

/* SLIDER */
.aplc-left input[type=range]{
  width:100%;
  height:4px;
  appearance:none;
  border-radius:4px;
  background:
    linear-gradient(
      to right,
      #1fbf3f 0%,
      #1fbf3f var(--fill),
      #2a2f2d var(--fill),
      #2a2f2d 100%
    );
}

.aplc-left input[type=range]::-webkit-slider-thumb{
  appearance:none;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#1fbf3f;
  cursor:pointer;
}

/* RIGHT */
.aplc-muted{font-size:11px;opacity:.6}

#emiValue{
  font-size:30px;
  font-weight:800;
  margin:6px 0 10px;
}

/* GRAPH */
.aplc-graph{
  position:relative;
  width:170px;
  height:170px;
  margin:16px auto 18px;
}

.aplc-graph svg{transform:rotate(-90deg)}

.aplc-graph-center{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.aplc-graph-center strong{
  font-size:16px;
}

/* BUTTON */
.aplc-btn{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:none;
  background:#cc2e5d;
  color:#fff;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .aplc-grid{flex-direction:column}
  .aplc-right{width:100%}
}





/* ACTION BUTTONS */
.aplc-actions{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.aplc-action-btn{
  flex:1;
  padding:10px;
  border-radius:8px;
  border:none;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  background:#1fbf3f;
  color:#000;
}

.aplc-action-btn.outline{
  background:transparent;
  color:#1fbf3f;
  border:1px solid #1fbf3f;
}




/* BRAND HEADING */
.aplc-brand-heading{
  text-align:center;
  font-size:26px;
  font-weight:800;
  letter-spacing:.5px;
  margin-bottom:22px;
  color:#eaeaea;
}

/* Move Loan Amount slightly down */
.loan-amount{
  margin-top:8px;
}

/* ACTION BUTTONS */
.aplc-actions{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.aplc-action-btn{
  flex:1;
  padding:10px;
  border-radius:8px;
  border:none;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  background:#1fbf3f;
  color:#000;
}

.aplc-action-btn.outline{
  background:transparent;
  color:#1fbf3f;
  border:1px solid #1fbf3f;
}

/* GLOBAL BUTTON STANDARD */
.aplc-btn,
.aplc-action-btn {
  height: 44px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

