body {
  font-family: "Lato", sans-serif;
}

.sidenav {
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;

  background: linear-gradient(180deg, #151515, #252020);
  color: #f5f5f5;

  padding: 32px 24px;
  box-sizing: border-box;

  border-right: 4px solid #d22030;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.35);
}

.quiz-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 32px 0;

  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.1;
}

.quiz-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;

  background-color: #d22030;
  margin-top: 12px;
  border-radius: 999px;
}

.description {
  font-size: 1rem;
  line-height: 1.5;
  color: #cfcfcf;

  margin-bottom: 24px;
}

.current-location {
  background-color: #ffffff;
  color: #151515;

  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;

  padding: 18px 16px;
  margin: 0 0 28px 0;

  border-left: 6px solid #d22030;
  border-radius: 12px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.feedback-message,
.score-display {
  font-size: 1rem;
  line-height: 1.4;

  color: #d8d8d8;
  background-color: rgba(255, 255, 255, 0.08);

  padding: 14px 16px;
  margin-bottom: 18px;

  border-radius: 10px;
}

.feedback-message {
  border-left: 4px solid #f7b500;
}

.score-display {
  border-left: 4px solid #5ec576;
}

.current-location:hover,
.feedback-message:hover,
.score-display:hover {
  transform: translateX(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.current-location:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.main {
  margin-left: 300px;
  width: calc(100vw - 300px);
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.map {
  width: 65%;
  height: 100vh;

}

gmp-map {
  width: 100%;
  height: 100%;
  display: block;
}