* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
  }
  
  body {
    background-color: #090e22;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
  }
  
  .hide {
    display: none !important;
  }
  
  .container {
    min-width: 400px;
    min-height: 400px;
    /* background-color: #c7c9f5; */
    padding: 2rem;
  }
  
  /* IMC Form */
  #calc-container h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .form-inputs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .form-control {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  .form-control label {
    font-weight: bold;
    margin-bottom: 0.6rem;
    color: rgb(8, 7, 7);
  }
  
  .form-control input {
    padding: 1rem 0.5rem;
  }
  
  .action-control {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
  }
  
  button {
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    background-color: #f44236;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.9;
    flex: 1;
  }
  
  button:hover {
    opacity: 1;
  }
  
  #clear-btn {
    background-color: #444;
  }
  
  /* Table */
  #result-container {
    text-align: center;
  }
  
  #imc-number {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
  }
  
  #imc-info {
    font-size: 1.4rem;
    color: #ccc;
  }
  
  #result-container h3 {
    margin-top: 1rem;
    color: #dfdfdf;
  }
  
  #result-container {
    display: flex;
    flex-direction: column;
  }
  
  #imc-table {
    margin: 1.5rem 0;
    font-size: 0.8rem;
  }
  
  .table-header {
    font-weight: bold;
    color: #ccc;
  }
  
  .table-header,
  .table-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #444;
    text-align: center;
  }
  
  .table-header h4,
  .table-data p {
    flex: 1;
  }
  
  .table-header h4:nth-child(3),
  .table-data p:nth-child(3) {
    max-width: 80px;
  }
  
  #back-btn {
    align-self: center;
  }
  
  .good {
    color: #12db34;
  }
  
  .low {
    color: #dbce12;
  }
  
  .medium {
    color: #db6212;
  }
  
  .high {
    color: #db1912;
  }
  .hanoi{

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 250px;
    width: 1000px;
    position: relative;
}
.tower{
    position: relative;
    cursor: pointer;
}
.tower:hover{
    background: rgb(153, 164, 164);
}
.tower::after{
    content:"";
    display: block;
    position: absolute;
    width: 20px;
    height: 200px;
    bottom: 0;
    left: 90px;
    background: rgb(108, 112, 113);
    border-radius: 10px 10px 0 0;
}

.disco{
    position:absolute;
    background: linear-gradient(0deg, #f00, #600);
    height: 35px;
    width: 180px;
    border-radius: 15px;
    margin-left: 10px;
    z-index:2;
    transition: left .2s , bottom .2s .2;
    pointer-events: none;
}
.disco1{
  position:absolute;
  background: linear-gradient(0deg, rgb(63, 192, 211), rgb(38, 186, 183));
  height: 35px;
  width: 180px;
  border-radius: 15px;
  margin-left: 10px;
  z-index:2;
  transition: left .2s , bottom .2s .2;
  pointer-events: none;
}
.disco2{
  position:absolute;
  background: linear-gradient(0deg, rgb(190, 221, 98), rgb(202, 222, 24));
  height: 35px;
  width: 180px;
  border-radius: 15px;
  margin-left: 10px;
  z-index:2;
  transition: left .2s , bottom .2s .2;
  pointer-events: none;
}
.disco3{
  position:absolute;
  background: linear-gradient(0deg, rgb(88, 206, 109), rgb(10, 232, 51));
  height: 35px;
  width: 180px;
  border-radius: 15px;
  margin-left: 10px;
  z-index:2;
  transition: left .2s , bottom .2s .2;
  pointer-events: none;
}
.disco4{
  position:absolute;
  background: linear-gradient(0deg, rgb(181, 86, 179), rgb(240, 11, 190));
  height: 35px;
  width: 180px;
  border-radius: 15px;
  margin-left: 10px;
  z-index:2;
  transition: left .2s , bottom .2s .2;
  pointer-events: none;
}
.d1{
    width:60px; 
    margin-left: 70px;
}
.d2{
    width:90px; 
    margin-left: 55px;
}
.d3{
    width:120px; 
    margin-left: 40px;
}
.d4{
    width:150px; 
    margin-left: 25px;
}


.t1{
    left: 200;
}
.t2{
    left: 335px;
}
.t3{
    left: 670px;
}

.p1{
    bottom:0;
}
.p2{
    bottom:35px;
}
.p3{
    bottom:70px;
}
.p4{
    bottom:105px;
}
.p5{
    bottom:140px;
}
.p0{
    bottom:350px;

}