.currency-toggle{
  display:flex;
  gap:12px;
  margin-bottom:30px;
}

.currency-toggle button{
  flex:1;
  border:none;
  padding:5px;
  border-radius:14px;
  cursor:pointer;
  font-weight:500;
  transition:0.3s;
  background:#e2e8f0;
  color:#334155;
}

.currency-toggle button.active{
  background:linear-gradient(135deg,#2563eb,#4f46e5);
  color:#fff;
}

.input-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.input-group label{
  display:block;
  font-weight:500;
}

.input-group input{
  width:100%;
  padding:15px;
  border-radius:14px;
  border:1px solid #dbeafe;
  outline:none;
  background:#f8fbff;
  transition:0.3s;
}

.input-group input:focus{
  border-color:#2563eb;
  background:#fff;
}

.formula-box{
  margin-top:30px;
  padding:22px;
  border-radius:20px;
  background:linear-gradient(135deg,#eff6ff,#eef2ff);
  color:#1e3a8a;
}

.result-title{

  font-weight:500;
  margin-bottom:5px;
  position:relative;
  z-index:2;
}

.beta-value{
  font-size:45px;
  font-weight:600;
  color:#2563eb;
  margin-bottom:10px;
  position:relative;
  z-index:2;
}

.risk-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  margin-bottom:25px;
  position:relative;
  z-index:2;
}

.low-risk{
  background:#dcfce7;
  color:#15803d;
}

.moderate-risk{
  background:#fef3c7;
  color:#b45309;
}

.high-risk{
  background:#fee2e2;
  color:#dc2626;
}

.meter-wrapper{
  margin-bottom:25px;
  position:relative;
  z-index:2;
}

.meter-label{
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
  font-weight:600;
  color:#334155;
}

.meter{
  width:100%;
  height:16px;
  background:#e2e8f0;
  border-radius:50px;
  overflow:hidden;
}

.meter-fill{
  width:50%;
  height:100%;
  border-radius:50px;
  background:linear-gradient(90deg,#22c55e,#f59e0b,#ef4444);
  transition:0.5s ease;
}

.capm-box,
.rating-box,
.summary{
  background:#f8fbff;
  padding:20px;
  border-radius:20px;
  margin-bottom:20px;
  position:relative;
  z-index:2;
}

.capm-title,
.rating-title{
  font-weight:500;
  color:#64748b;
  margin-bottom:8px;
}

.capm-value{
  font-size:30px;
  font-weight:800;
  color:#2563eb;
}

.rating-value{
  font-weight:500;
  color:#111827;
}

