input[type="url"],
input[type="text"] {
  width: 70%; 
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

.form-row{
  position: relative;
}

.butoon {
  padding: 12px 25px;
  border-radius: 8px;
  background: #4285F4;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  top: 0;
}

@media only screen and (max-width: 767px) {
  .butoon {
    padding: 12px 10px;
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  input[type="url"],
  input[type="text"] {
    width: 100%;
    margin-right: 0;
  }
}


.progress-container {
  width: 100%;
  background: #eee;
  margin: 20px 0;
  height: 25px;
  border-radius: 15px;
  overflow: hidden;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background: #34A853;
  transition: width 0.4s ease;
}

/* ===== Toggle styling ===== */

.tool-toggle {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.tool-toggle label {
  font-weight: 600;
  cursor: pointer;
}

.tool-toggle input {
  margin-right: 6px;
}


a {
  
    text-decoration: none !important;
}




