
.question {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.question b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}
.buttons {
  margin-top: 20px;
}
.fixed-width-btn {
   width: 120px;  /* Adjust this width based on your requirements */
}
html, body {
  height: 100%; /* Ensure the html and body take full height */
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* Allow main content to grow and fill available space */
  display: flex;
  flex-direction: column;
}

.scrollable-container {
  flex: 1; /* Allow scrollable container to grow and fill available space */
  overflow-y: auto; /* Make the container scrollable */
  padding: 20px; /* Add some padding */
}

.wrapper {
flex: 1
}

.button-bar {
  background-color: white;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Ensure it's above other content */
}

footer {
  background-color: #f8f9fa; /* Optional: Add background color */
  padding: 20px 0; /* Add padding to the footer */
  text-align: center; /* Center-align footer content */
}

.feedback-form {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
}

.thank-you-message {
    display: none;
    text-align: center;
    margin-top: 20px;
    color: #28a745;
    font-weight: bold;
}