/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

a {
  text-decoration: none;
  color: white;
}

/* Header styles */
.header {
  background-color: black;
  color: #fff;
  padding: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  order: 2;
  /* Move to the right */
}

.header-center {
  text-align: center;
  flex: 1;
  /* Take remaining space */
}

.header-right {
  order: -1;
  /* Move to the left */
}

/* Main content styles */
.content {
  max-width: 90%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  direction: ltr;
  /* Right-to-left direction */
  text-align: left;
  /* Right-align text */
}

.question {
  font-size: 18px;
  margin-bottom: 20px;
  background-color: teal;
  /* Background color for the question box */
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
}

.options {
  /* 85% of the div */
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.option {
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  /* Add border radius */
  outline: none;
  border: 2px solid teal;
  background-color: #E1F0DA;
  color: black;
  font-weight: 550;
  text-align: left;
}

/* Next button styles */
#next-btn {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 10px 20px;
  background-color: teal;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.next-question {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  margin-bottom: inherit;
}

#next-btn:hover {
  background-color: green;
}

/* Footer styles */
.footer {
  background-color: teal;
  color: black;
  padding: 10px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Media queries for responsiveness */
@media screen and (max-width: 600px) {
  .content {
    max-width: 100%;
    padding: 10px;
  }

  .option {
    font-size: 1rem;
  }
}
