body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

nav {
  display: flex;
  align-items: center;
}

.burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-right: 15px;
}

.menu li a {
  color: #fff;
  text-decoration: none;
}

.menu li a.disabled {
  color: #999;
  cursor: not-allowed;
}

.main-content {
  padding: 20px;
}



@media only screen and (max-width: 300px) {


  header {
    padding: 10px 20px;
  }

  .burger-icon {
    display: flex;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    padding: 10px;
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    margin-bottom: 10px;
  }

  .main-content {
    padding: 20px 10px;
  }
}


/* General form styling */
form {
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 0.5rem;
}

/* Table-style layout */
.form-table {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
  padding: 0.5rem; /* Increase the padding value */
  vertical-align: middle;
}

/* Input group styling */
.input-group {
  display: block;
  align-items: center;
  margin-bottom: 0.5rem;
}

.form-group textarea {
  font-family: inherit;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group textarea {
  width: 90%;
}

.input-group input[type="text"],
.input-group input[type="textarea"],
.input-group input[type="email"],
.input-group input[type="password"] {
  flex: 1;
  padding: 0.5rem;
  box-sizing: border-box;
}

.input-group .input-group-addon {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

/* Button styling */
button {
  display: inline-block;
  padding: 10px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 2px;
}

/* Label styling */
label {
  font-weight: bold;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0; /* Reset margin-bottom to avoid interfering with <br> */
}

#answer {
  font-family: monospace; /* Use a fixed-width font */
}

#placeholder-text {
  font-family: monospace; /* Ensure the placeholder text uses the same font */
  color: gray; /* Style the placeholder text color */
}
