
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600&display=swap');

.pfsc-wrapper{
max-width:800px;
margin:auto;
padding:30px;
background:white;
border-radius:18px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
font-family:'Hind Siliguri',sans-serif;
}

.pfsc-title{
text-align:center;
margin-bottom:25px;
}

.pfsc-tabs{
display:flex;
gap:10px;
margin-bottom:25px;
}

.pfsc-tab{
flex:1;
padding:12px;
border:none;
background:#f1f5f9;
border-radius:10px;
cursor:pointer;
font-weight:500;
}

.pfsc-tab.active{
background:#16a34a;
color:white;
}

.pfsc-content{
display:none;
}

.pfsc-content.active{
display:block;
}

.pfsc-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:15px;
}

.pfsc-card{
background:#f8fafc;
padding:15px;
border-radius:10px;
}

.pfsc-card label{
display:block;
margin-bottom:6px;
font-size:14px;
}

input,select{
width:100%;
padding:10px;
border-radius:8px;
border:1px solid #ddd;
}

.pfsc-results{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:15px;
margin-top:20px;
}

.pfsc-result{
background:#f1f5f9;
padding:15px;
border-radius:10px;
text-align:center;
}

.pfsc-result.profit{
background:#dcfce7;
font-weight:600;
}

@media(max-width:768px){

.pfsc-grid{
grid-template-columns:1fr;
}

.pfsc-results{
grid-template-columns:1fr;
}

}
