.fmst-container{
max-width:800px;
margin:auto;
font-family:Arial;
}

.fmst-form{
display:grid;
gap:10px;
}

.fmst-form input{
padding:10px;
border-radius:6px;
border:1px solid #ddd;
}

button{
background:#1877f2;
color:white;
border:none;
padding:12px;
border-radius:6px;
cursor:pointer;
}

.meter{
font-size:28px;
font-weight:bold;
text-align:center;
margin:20px 0;
}

.progressbox{
margin:10px 0;
}

.bar{
background:#eee;
height:12px;
border-radius:6px;
}

.fill{
background:#1877f2;
height:100%;
border-radius:6px;
}

.card{
background:#fff;
padding:20px;
margin:15px 0;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.status.green{
color:green;
}

.status.red{
color:red;
}

.share{
margin-top:20px;
}

.share a{
margin-right:15px;
cursor:pointer;
color:#1877f2;
}

@media(max-width:600px){

.fmst-container{
padding:15px;
}

}