body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease, background-position 0.2s ease;
  font-family: sans-serif;
}

/* Floating Gear Button */
.floating-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 9999;
  opacity: 0.6;
}

.floating-btn img {
  width: 24px;
  height: 24px;
  }

/* Dropdown Menu */
.menu {
  position: absolute;
  top: 70px;
  left: 10px;
  display: flex;
  flex-direction: column;
  margin: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  z-index: 9998;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.2s ease;
  }

.menu.active {
  opacity: .6;
  transform: scale(1);
  pointer-events: auto;
}

.menu img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.menu button {
  background: none;
  border: none;
  padding: 0;
}

/* Glassy Go Button */
form {
    height: 80%;
    width:80%;
    background-color: rgba(255, 255, 255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 17px;
    backdrop-filter: blur(5px);
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(129, 236, 174, 0.6);
    padding: 13px;
     
}

form p {
    font-family: 'Chakra+Petch', sans-serif;
    color:#ffffff;
    letter-spacing: 5px;
    outline: none;
    border: none;
}
form h3 {
    font-family: 'Chakra+Petch', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color:#ffffff;
}

#searchInput {
    border-radius: 13px;
  padding: 8px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  opacity: 0.7;
}

#suggestions {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 13px;
  border-top: none;
  background: white;
  position: absolute;
  z-index: 1;
  display: none;
  opacity: 0.7;
}

#suggestions div {
  padding: 8px;
  cursor: pointer;
}

#suggestions div:hover {
  background-color: #eee;
}

button {
    margin-top: 40px;
    margin-bottom: 15px;
    width: 100%;
    background: rgba(0, 0, 0, 0.22);
    border: 2px solid #38363654;
    border-radius: 13px;
    color: #e1e1e1;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
} 
 
button:hover {
    background: #629677;
    transition: all 0.50s ease;
}

button:focus {
    box-shadow: 0px 0px 0px 2px rgba(103, 110, 103, 0.71);
    background: #629677;
}       

#visitCount {
  color: #fff;
  font-size: 14px;
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 8px;
}
