/* Basic styles for the body and header */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 10px 40px;
  box-sizing: border-box;
}

header h1 a {
  color: white;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
}

.hamburger-menu {
  cursor: pointer;
  margin-left: 10px;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

h1 {
  font-size: 24px;
  margin: 0;
}

/* Navigation menu styles */
nav {
  display: none;
  position: absolute;
  top: 60px;
  right: 10px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  padding: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

nav ul li:hover {
  background-color: #f4f4f4;
}

.hidden {
  display: none;
}

/* Main content styles */
main {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Move everything closer to the top */
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

.question-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.nav-link {
  font-size: 16px;
  color: #008080; /* New color */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

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

.question-container {
  text-align: center;
  width: 100%;
  margin-top: 40px; /* Add gap between previous question link and the rest */
}

.hashtags-container {
  margin-bottom: 10px;
  text-align: center;
}

.hashtag {
  display: inline-block;
  background-color: #e0e0e0;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 5px;
  color: #008080; /* New color */
  text-decoration: none;
  font-size: 14px;
}

.hashtag:hover {
  background-color: #d0d0d0;
}

.small-text {
  font-size: 14px;
  margin: 0;
  text-align: center;
}

#questionID {
  color: grey;
  font-style: italic;
}

.divider {
  width: 100px; /* Shorter line */
  border: 0.5px solid #ccc;
  margin: 10px auto; /* Center the line */
}

.large-text {
  font-size: 36px;
  margin: 20px 0;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px; /* Add gap between question and buttons */
  gap: 10px; /* Small gap */
}

.option-button {
  font-size: 24px;
  padding: 20px;
  background-color: #008080; /* New color */
  color: white;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.option-button:hover {
  background-color: #005f5f; /* Slightly darker shade */
}

.half-circle-left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.half-circle-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.submit-container {
  margin-top: 20px;
}

.small-link {
  font-size: 16px;
  color: #008080; /* New color */
  text-decoration: none;
  font-style: italic;
}

.small-link:hover {
  text-decoration: underline;
}
.hashtag {
  display: inline-block;
  background-color: #e0e0e0;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 5px;
  color: #008080;
  text-decoration: none;
  font-size: 14px;
}

.hashtag:hover {
  background-color: #d0d0d0;
}
