body{
  margin:0;
  padding:20px;
  background:#eef2ff;
  display:flex;
  justify-content:center;
  font-family:Arial;
}

.calculator-card{
  width:100%;
  max-width:850px;
  background:white;
  padding:40px;
  border-radius:25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.fraction-container{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
}

.fraction-box{
  width:220px;
}

.fraction-box input{
  width:100%;
  height:60px;
  border-radius:12px;
  border:2px solid #dbe4ee;
  padding:0 15px;
  text-align:center;
  font-size:18px;
}

.fraction-line{
  height:3px;
  background:black;
  margin:10px 0;
}

select{
  width:90px;
  height:55px;
  border-radius:12px;
  border:2px solid #dbe4ee;
}

button{
  margin-top:35px;
  width:240px;
  height:55px;
  border:none;
  border-radius:14px;
  background:#2563eb;
  color:white;
  font-size:18px;
}

/* MOBILE */
@media(max-width:768px){

  .fraction-container{
    flex-direction:column;
  }

  .fraction-box{
    width:100%;
    max-width:260px;
  }

  select{
    width:100%;
    max-width:260px;
  }

  button{
    width:100%;
  }

}