#community-qa-app {
  max-width: 100%;
  width: 100%;
  margin: 30px auto;
  background: #fffae6;
  border-radius: 10px;
   padding: 24px 18px 18px 18px; 
}
.cqa-search-wrap input {
  width: 100%;
  border: 1px solid #ffe082;
  border-radius: 5px;
  font-size: 1rem;
  padding: 8px 12px;
  margin-bottom: 10px;
  background: #fff;
}
.cqa-dropdown-wrap select {
  width: 100%;
  border: 1px solid #ffe082;
  border-radius: 5px;
  font-size: 1rem;
  padding: 8px 12px;
  background: #fff;
  margin-bottom: 10px;
}
#cqa-answer b {
    color: #333;
        font-weight: 600;
}
#cqa-answer blockquote{
  background-color: #fffae6;
}
#cqa-answer { 
  background: #fffae6;
  border-left: 4px solid #ffc107;
  padding: 14px 16px;
  border-radius: 5px;
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 10px;
}
#cqa-other-fields input[type="text"],
#cqa-other-fields input[type="email"] {
  width: 100%;
  border: 1px solid #ffe082;
  border-radius: 5px;
  font-size: 1rem;
  padding: 8px 12px;
  margin-bottom: 8px;
  background: #fff;
}
#cqa-submit-other {
  background: #ffc107;
  color: #222;
  border: none;
  border-radius: 5px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
#cqa-submit-other:hover {
  background: #ffb300;
}
#cqa-other-msg {
  font-size: 0.98rem;
  margin-top: 6px;
}
#cqa-answer table {
    border: 1px solid #dcdcdc;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08), inset 0 0 0 1px rgba(255, 255, 255, .5);
}
#cqa-answer table th {
    border: 1px solid #dcdcdc;
    background: #f6f6f6;
    padding: 20px;
    text-align: left;
    font-family: Teko;
    color: #000;
    font-size: 26px;
}
#cqa-answer tr td {
    border: 1px solid #dcdcdc;
    padding: 10px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    font-size: 20px;
} 
#cqa-answer table b{
  color: #000;
}
@media (max-width: 600px) {
  #community-qa-app {
    padding: 12px 4vw;
  }
  .cqa-search-wrap input,
  .cqa-dropdown-wrap select,
  #cqa-other-fields input[type="text"],
  #cqa-other-fields input[type="email"] {
    font-size: 0.98rem;
    padding: 7px 8px;
  }
} 