.findButton {
    display: inline-block;
    padding: 12px 24px; 
    padding-left:1px;
    padding-right:1px;
    color: #fff;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-size: 200%;
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
    border: 0;
}

  @-moz-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-webkit-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-o-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @keyframes shine {
    0% {
        background-position: 100%; 
    }
    100% {
        background-position: -100%; 
    }
}
  
.fyffwSvg {
    display: none;
}

.fyffwSvgRuler {
    display: none;
}  
  

#lengthDiv, #weightDiv, #sizeDiv, #finalDiv {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f5f5f5;
    display: none; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#lengthDiv.active, #weightDiv.active, #sizeDiv.active, #finalDiv.active {
    display: block; 
}

#lengthDiv label,
#weightDiv label,
#sizeDiv label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

#lengthDiv input[type="number"],
#weightDiv input[type="number"],
#sizeDiv select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
    line-height: 1.5; 
    height: auto; 
}

#lengthDiv input[type="number"]:focus,
#weightDiv input[type="number"]:focus,
#sizeDiv select:focus {
    border-color: #4CAF50;
    outline: none;
}

#lengthDiv button,
#weightDiv button,
#sizeDiv button,
#finalDiv button {
    display: inline-block;
    padding: 12px 24px; 
    padding-left:1px;
    padding-right:1px;
    color: #fff;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-size: 200%;
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
    border: 0;
}

#lengthDiv button:hover,
#weightDiv button:hover,
#sizeDiv button:hover,
#finalDiv button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

#sizeDiv h3,
#finalDiv h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

#finalSize {
    font-size: 22px;
    color: #4CAF50;
    font-weight: bold;
}

#lengthDiv {
    display: none;
}

#weightDiv {
    display: none;
}

#sizeDiv {
    display: none;
}

#finalDiv {
    display: none;
}