body {
  display: contents;
}

.navbar1 {
  float: left;
  margin: 20px;
}

.navbar2 {
  float: right;
  margin: 20px;
}

.nav-item {
  text-decoration: none;
  color: black;
  font-family: arial, sans-serif;
  font-size: 13px;
  margin-right: 15px;
}

.nav-item:hover {
  text-decoration: underline;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.icon-circle:hover {
  background-color: rgba(60, 64, 67, 0.1);
  cursor: pointer;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3c4043;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  transition: opacity 0.2s ease;
  z-index: 10;
}

/* 마우스 올렸을 때 툴팁 보이기 */
.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.main {
  margin-top: 300px;
  text-align: center;
}

.input-area {
  margin-top: 20px;
  position: relative;
  left: 20px;
}

.input-box {
  width: 584px;
  height: 46px;
  border-radius: 24px;
  border: 1px solid #dfe1e5;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding-left: 40px;
  padding-right: 40px;
}

.input-box:focus {
  outline: none;
}

.input-box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.search-icon {
  position: relative;
  left: 40px;
  color: #9aa0a6;
}

.keyboard-icon {
  position: relative;
  right: 110px;
  color: #9aa0a6;
}

.mic-icon {
  position: relative;
  right: 100px;
  color: #9aa0a6;
}

.camera-icon {
  position: relative;
  right: 90px;
  color: #9aa0a6;
}

.button-area {
  margin-top: 18px;
}

.button-style {
  height: 36px;
  background-color: #f8f9fa;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  font-family: arial, sans-serif;
  padding: 0 16px;
  margin: 11px 4px;
}

.button-style:hover {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  color: #202124;
}

.offered-area {
  margin-top: 20px;
}

.offered-link {
  text-decoration: none;
  margin-left: 10px;
}

.offered-link:hover {
  text-decoration: underline;
}

.footer {
  position: absolute;
  bottom: 0px;
  background-color: #f2f2f2;
  width: 100%;
}

.first-line {
  padding: 15px 30px;
  border-bottom: 1px solid #dadce0;
  font-size: 15px;
  color: #1f1f1f;
}

.second-line {
  padding: 15px 30px;
  font-size: 15px;
  color: #1f1f1f;
}

.second-line-item {
  text-decoration: none;
  margin-right: 15px;
  color: #1f1f1f;
}

.second-line-item:hover {
  text-decoration: underline;
}

.second-line-second {
  float: right;
}
