.ab_about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.ab_page-title {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.ab_intro-section {
  text-align: center;
  margin-bottom: 40px;
}

.ab_intro-section p {
  font-size: 1.2em;
  color: #34495e;
  line-height: 1.6;
}

.ab_faq-section h2 {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.ab_faq-item {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.ab_faq-item h3 {
  font-size: 1.4em;
  color: #2980b9;
  margin-bottom: 10px;
}

.ab_faq-item p {
  font-size: 1em;
  color: #34495e;
  line-height: 1.5;
}

.ab_cta-section {
  text-align: center;
  margin-top: 40px;
}

.ab_cta-section p {
  font-size: 1.2em;
  color: #2c3e50;
}

.ab_blue-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px;
}

.ab_blue-button:hover {
  background-color: #2980b9;
}
/* app/assets/stylesheets/admin.css */
/* Flash message styling */
.flash {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 16px;
}

.clsAdminContainer {
  text-align: center;
  padding: 1px;
  border-radius: 10px;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

  .clsAdminMenuBar {
    text-align: center;
  }

.flash.alert {
  background-color: #d81b60;
  color: white;
  border: 1px solid #a11245;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.clsStatsContainer {
  text-align: center;
  margin: 20px 0;
}

.clsStatsGrid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
}

.clsStatsGrid p {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.5;
}

.clsHighlight {
  background-color: #e3f2fd;
  padding: 1px 6px;
  border-radius: 5px;
  color: #6a1b9a; /* Bold purple */
  font-size: 1.4em; /* Larger than row */
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.clsHighlight:hover {
  transform: scale(1.05);
}

.clsStatEmoji {
  font-size: 1.4em;
  vertical-align: middle;
}

.admin_clsField {
  margin: 15px 0;
}



/* app/assets/stylesheets/admin_answers.css */

select,
input[type="text"],
input[type="password"] {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: fit-content;
}

.clsAdminTable .row-even {
  background-color: #F5F5F5; /* Light gray for even rows */
}

.clsAdminTable .row-odd {
  background-color: #FFFFFF; /* White for odd rows */
}

.clsAdminTable .matching-answer {
  background-color: #90EE90; /* Green for matching answers */
}

.clsAdminTable .non-matching-answer {
  background-color: #FFB6C1; /* Red for non-matching or one unanswered */
}

.clsAdminTable .unanswered-both {
  background-color: #FFFACD; /* Yellow for both unanswered */
}
.clsFormGroup {
  text-align: center;
  margin-bottom: 20px;
}

.clsTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.clsTable th,
.clsTable td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.clsTable th {
  background-color: #007bff;
  color: white;
}

.clsTable tr:nth-child(even) {
  background-color: #f2f2f2;
}


.form-input {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.clsNotificationsContainer {
  padding: 20px;
}

.clsNotificationsTable {
  width: 100%;
  border-collapse: collapse;
}

.clsNotificationsTable th, .clsNotificationsTable td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.alert-success, .alert-danger {
  padding: 10px;
  margin-bottom: 15px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}
.aq_error-container {
  background-color: #ffcccc;
  padding: 10px;
}
.aq_answer-options-section {
  margin-top: 20px;
  padding: 10px;
}
.aq_answer-option {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 5px;
  background-color: #fff;
}

/* app/assets/stylesheets/admin_questions.css */
.aq_admin-questions-stats {
  padding: 20px;
}

form input[type="text"] {
  margin-right: 5px;
}
.aq_question-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f0f8ff;
  border-radius: 8px;
  overflow: hidden;
}
.aq_question-table th, .aq_question-table td {
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.aq_question-table th {
  background-color: #0288d1;
  color: white;
}
.aq_question-table tr:hover {
  background-color: #e0f0ff;
}
#idDebugInfo {
  background-color: #fff3cd;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  text-align: left;
}
.q_clsSearchForm {
  margin: 15px 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}


.sort-link {
  color: white;
  text-decoration: none;
}
.sort-link:hover {
  color: #e0f0ff;
  text-decoration: underline;
}

.clsAdminContainer {
  margin: 20px auto;
  padding: 20px;
}


.q_clsSearchForm {
  display: flex !important;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

/* app/assets/stylesheets/admin_users.css */
.toast.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 5px;
}

.clsAlert {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.clsForm {
  margin: 0 auto;
}

.clsFormRow {
  margin-bottom: 15px;
}

.clsFormLabel {
  font-weight: bold;
}

.au_clsFormInput {
  width: 100%;
  padding: 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #fff;
}

.au_clsFormSelect {
  width: 100%;
  padding: 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #fff;
}

.clsFormCheckbox {
  margin-left: 5px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}

.au_clstags-input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

#id_tag-input {
  width: 100% !important;
  max-width: 300px;
}

.au_clstags-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
  width: 100%;
}

.au_clstag-chip {
  background-color: #6c757d;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.au_clsremove-tag {
  cursor: pointer;
  color: #dc3545;
  font-weight: bold;
}

.au_form-control {
  width: 100%;
  max-width: 400px;
}

.badge.bg-secondary {
  background-color: #6c757d;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.au_clstag-suggestions {
  position: absolute;
  background-color: white;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  width: 100%;
  max-width: 300px;
  margin-top: 5px;
}

.au_clstag-suggestion {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}

.au_clstag-suggestion:hover {
  background-color: #e9ecef;
}

.au_deceased-user {
  background-color: #f8d7da;
}

.clsBlueContainer {
  padding: 15px;
  box-sizing: border-box;
}

.clsSearchActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.clsSearchForm {
  width: 100%;
}

.au_clsSearchInput {
  width: fit-content;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.clsUserTable th:nth-child(1) input.au_clsSearchInput { /* Tags search field */
  width: 70px;
}

.clsUserTable th:nth-child(2) input.au_clsSearchInput { /* UserName search field */
  width: 70px;
}

.clsUserTable th:nth-child(3) .clsButton { /* Search and Clear buttons */
  width: 60px !important;
  max-width: 60px !important;
  padding: 4px 8px;
  font-size: 12px;
  box-sizing: border-box;
}

.clsUserTable th:nth-child(4) input.au_clsSearchInput { /* Password search field */
  width: 70px;
}

.clsUserTable th:nth-child(5) input.au_clsSearchInput { /* Email search field */
  width: 70px;
}

.clsUserTable th:nth-child(6) input.au_clsSearchInput { /* Last Login search field */
  width: 70px;
}

.clsUserTable th:nth-child(7) input.au_clsSearchInput { /* Activated At search field */
  width: 70px;
}

.clsUserTable th:nth-child(8) input.au_clsSearchInput { /* Admin Notes search field */
  width: 70px;
}

.clsUserTable th:nth-child(9) { /* Delete */
  width: 70px;
}

.clsSearchForm .clsButton {
  margin: 0 auto;
  display: block;
}

.clsButton {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  touch-action: manipulation;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.clsButton.clsBlueButton {
  background-color: #007bff;
}

.clsButton.au_clsRedButton {
  background-color: #dc3545;
}

.clsUserTableWrapper {
  overflow-x: auto;
  width: 100%;
}

.clsUserTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.clsUserTable th,
.clsUserTable td {
  padding: 6px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
  box-sizing: border-box;
}

.clsUserTable th:nth-child(1), /* Tags header */
.clsUserTable td:nth-child(1) { /* Tags cells */
  width: 70px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable th:nth-child(2), /* UserName header */
.clsUserTable td:nth-child(2) { /* UserName cells */
  width: 100px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable th:nth-child(3), /* Edit header */
.clsUserTable td:nth-child(3) { /* Edit cells */
  width: 60px !important;
  max-width: 60px !important;
  white-space: normal;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.clsUserTable th:nth-child(4), /* Password header */
.clsUserTable td:nth-child(4) { /* Password cells */
  width: 70px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable th:nth-child(5), /* Email header */
.clsUserTable td:nth-child(5) { /* Email cells */
  width: 70px;
  max-width: 70px;
  min-width: 30px;
  white-space: normal;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.clsUserTable th:nth-child(6), /* Last Login header */
.clsUserTable td:nth-child(6) { /* Last Login cells */
  width: 70px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable th:nth-child(7), /* Activated At header */
.clsUserTable td:nth-child(7) { /* Activated At cells */
  width: 70px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable th:nth-child(8), /* Admin Notes header */
.clsUserTable td:nth-child(8) { /* Admin Notes cells */
  width: 70px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable th:nth-child(9), /* Delete header */
.clsUserTable td:nth-child(9) { /* Delete cells */
  width: 70px;
  white-space: normal;
  overflow-wrap: break-word;
}

.clsUserTable td:nth-child(3) .clsActions .clsButton { /* Edit button in cells */
  width: 60px !important;
  max-width: 60px !important;
  padding: 4px 8px;
  font-size: 12px;
  box-sizing: border-box;
}

.clsUserTable th {
  background-color: #f8f9fa;
  font-weight: bold;
}

.clsAdminYes {
  color: #28a745;
  font-weight: bold;
}

.clsSortLink {
  color: #007bff;
  text-decoration: none;
}

.clsSortLink:hover {
  text-decoration: underline;
}

.clsSortAsc::after {
  content: " ↑";
  color: #28a745;
}

.clsSortDesc::after {
  content: " ↓";
  color: #dc3545;
}

/* Half-screen styles (600px to 960px) */
@media (min-width: 600px) and (max-width: 960px) {
  .clsUserTable th,
  .clsUserTable td {
    padding: 4px;
    font-size: 11px;
    box-sizing: border-box;
  }

  .au_clsSearchInput {
    font-size: 10px;
    padding: 3px;
    color: #dc3545;
  }

  .clsUserTable th:nth-child(1) input.au_clsSearchInput { /* Tags search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(2) input.au_clsSearchInput { /* UserName search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(3) .clsButton { /* Search and Clear buttons */
    width: 50px !important;
    max-width: 50px !important;
    padding: 3px 6px;
    font-size: 10px;
    box-sizing: border-box;
  }

  .clsUserTable th:nth-child(4) input.au_clsSearchInput { /* Password search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(5) input.au_clsSearchInput { /* Email search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(6) input.au_clsSearchInput { /* Last Login search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(7) input.au_clsSearchInput { /* Activated At search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(8) input.au_clsSearchInput { /* Admin Notes search field */
    width: 50px;
  }

  .clsUserTable th:nth-child(1), /* Tags header */
  .clsUserTable td:nth-child(1) { /* Tags cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable th:nth-child(2), /* UserName header */
  .clsUserTable td:nth-child(2) { /* UserName cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable th:nth-child(3), /* Edit header */
  .clsUserTable td:nth-child(3) { /* Edit cells */
    width: 50px !important;
    max-width: 50px !important;
    white-space: normal;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }

  .clsUserTable th:nth-child(4), /* Password header */
  .clsUserTable td:nth-child(4) { /* Password cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable th:nth-child(5), /* Email header */
  .clsUserTable td:nth-child(5) { /* Email cells */
    width: 50px;
    max-width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }

  .clsUserTable th:nth-child(6), /* Last Login header */
  .clsUserTable td:nth-child(6) { /* Last Login cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable th:nth-child(7), /* Activated At header */
  .clsUserTable td:nth-child(7) { /* Activated At cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable th:nth-child(8), /* Admin Notes header */
  .clsUserTable td:nth-child(8) { /* Admin Notes cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable th:nth-child(9), /* Delete header */
  .clsUserTable td:nth-child(9) { /* Delete cells */
    width: 50px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .clsUserTable td:nth-child(3) .clsActions .clsButton { /* Edit button in cells */
    width: 50px !important;
    max-width: 50px !important;
    padding: 3px 6px;
    font-size: 10px;
    box-sizing: border-box;
  }

  .clsSearchForm .clsButton {
    padding: 4px 8px;
    font-size: 11px;
  }

  .clsActions .clsButton {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* Mobile styles (below 768px) */
@media (max-width: 768px) {
  .clsUserTable thead {
    display: none;
  }

  .clsUserTable tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    background-color: #fff;
  }

  .clsUserTable tr.au_deceased-user {
    background-color: #f8d7da;
  }

  .clsUserTable td {
    display: block;
    text-align: left;
    padding: 8px 10px;
    border: none;
    font-size: 16px;
    background-color: #f9f9f9;
    margin-bottom: 5px;
    border-radius: 4px;
  }

  .clsUserTable td::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 130px;
    margin-right: 10px;
    color: #004085;
    background-color: #cce5ff;
    padding: 2px 8px;
    border-radius: 3px;
  }

  .clsMobileHide {
    display: none;
  }

  .clsUserTable td:not(.clsMobileHide) {
    display: flex;
    align-items: center;
  }

  .clsActions .clsButton {
    width: 50px;
    max-width: 50px;
    padding: 3px 6px;
    font-size: 10px;
  }

  .clsSearchForm {
    flex-direction: column;
    align-items: stretch;
  }

  .au_clsSearchInput {
    font-size: 12px;
    color: #dc3545;
  }

  .au_clsRedText {
    color: #dc3545;
  }

  .clsButton {
    width: 100%;
    max-width: 200px;
    margin: 5px 0;
  }
}
/* Base styles */
.as_search-page {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  font-family: Arial, sans-serif;
}

.as_clsAdvancedSearchDivSearchContainer {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.as_clsDivSearchMain {
  flex: 3;
}

.as_clsDivListSavedSearches {
  flex: 1;
}

.as_clsCriterion {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.as_clsCboCategoryID,
.as_clsCboAnswer,
.as_clsCboQuestionID,
.as_clsCboPriority {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
}

.as_clsDivLinks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.as_clsDivFormActions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.as_clsDivFormActions label {
  font-weight: bold;
}

.as_clsDivFormActions input[type="text"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  max-width: 200px;
}



.as_clsUserResult {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.as_clsUserResult ul {
  list-style-type: disc;
  margin-top: 8px;
  padding-left: 20px;
}

.answer-matched {
  color: green;
}

.answer-unmatched {
  color: red;
}

.answer-unanswered {
  color: #ff8300;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 16px 0;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .as_search-page {
    padding: 12px;
  }

  .as_clsAdvancedSearchDivSearchContainer {
    flex-direction: column;
  }

  .as_clsDivSearchMain,
  .as_clsDivListSavedSearches {
    flex: none;
    width: 100%;
  }

  .as_clsCriterion {
    flex-direction: column;
    align-items: stretch;
  }

  .as_clsCboCategoryID,
  .as_clsCboAnswer,
  .as_clsCboQuestionID,
  .as_clsCboPriority {
    max-width: 100%;
  }

  .as_clsDivLinks {
    flex-direction: column;
    align-items: flex-start;
  }

  .as_clsDivFormActions {
    align-items: stretch;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .as_search-page {
    padding: 8px;
  }

  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 0.875rem;
  }

  .as_clsUserResult ul {
    padding-left: 15px;
  }
}
 /* app/assetsstylesheets/answers.css */

.an_clsEditAnswerContainer {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Existing styles */

.question-text {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 1rem;
 color: #0288d1;
}

/* in answercs.css */
select {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.clsEditAnswerContainer.clsBlueContainer {
  padding: 20px;
  background-color: #f0f8ff;
  border-radius: 5px;
}
.an_clsFormGroup {
  margin-bottom: 15px;
}

.skip-form {
  margin-top: 15px;
}
.beta-container {

  margin: 20px auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  font-size: 20px; /* Increased base font size */
}

/* Become a Beta Tester Heading */
h1 {
  text-align: center;
  font-size: 50px; /* Larger heading */
}

.beta-duties {
  list-style: none;
  padding: 0;
}

.beta-duties li {
  margin: 10px 0;
  font-size: 20px; /* Larger list items */
}

.question {
  text-align: center;
  margin: 28px 0;
}


#submit-btn {
  background: #FFC107; /* Vibrant yellow for 'heck yeah!' */
}

#submit-btn:hover {
  background: #FFB300; /* Slightly darker yellow on hover */
}

button:hover {
  background: #009ACD;
}


.hidden {
  display: none;
}

.form-group {
  margin: 15px 0;
}

input {
  padding: 10px; /* Slightly larger padding for inputs */
  border: 1px solid #ddd;
  border-radius: 4px;
 
}
/* app/assets/stylesheets/contact.css */
.contact-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.contact-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.field input[type="text"]::placeholder,
.field input[type="email"]::placeholder,
.field textarea::placeholder {
  color: #aaaaaa;
}

.field input[type="text"]:focus,
.field input[type="email"]:focus,
.field textarea:focus {
  outline: none;
  border-color: #ffeb3b;
  box-shadow: 0 0 5px rgba(255, 235, 59, 0.3);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.clsBlueButton {
  background-color: #ff6f61;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.clsBlueButton:hover {
  background-color: #e55a4e;
}

.clsCancelButton {
  background-color: #6c757d;
}

.clsCancelButton:hover {
  background-color: #5a6268;
}

.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.dq_clsContainer {
  max-width: 600px;
  margin: 10px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers all content horizontally */
  justify-content: center; /* Centers content vertically if needed */
}
.dq_clsTitle {
  font-size: 24px;
  color: #0288d1;
  margin-bottom: 10px; /* Reduced margin to move header higher */
}
.dq_clsQuestionBox {
  width: 100%; /* Ensures box spans container width */
  max-width: 100%; /* Prevents overflow */
  text-align: center; /* Centers text and inline elements */
}

.dq_clsQuestionText {
  font-size: 26px; /* Increased font size */
  font-weight: bold;
  margin-bottom: 15px;
}
.dq_clsForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dq_clsInput {
  width: 100%;
  max-width: 300px; /* Limits dropdown width */
  min-height: 40px; /* Reduced height for dropdown, not textarea */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.dq_clsActions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dq_clsButton {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.dq_clsSubmit {
  width: 100%;
  max-width: 150px; /* Limits submit button width */
  margin: 0 auto; /* Centers button */
}

.dq_clsButton:hover {
  background: #0056b3;
}

.dq_clsSignUp {
  background: #6c757d;
}

.dq_clsSignUp:hover {
  background: #5a6268;
}

.dq_clsError {
  color: #dc3545;
  font-size: 16px;
}
/* assets/stylesheets/dashboard.css */
.db_dashboard-page {
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.db_dashboard-page h1 {
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8em;
}

section {
  margin-bottom: 30px;
  padding: 15px;
  border: 1px solid #007bff;
  border-radius: 5px;
}

section h2 {
  color: #00b7eb;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Existing styles */
.db_match-teaser {
  margin-top: 1rem;
  font-style: italic;
  color: #007bff;
  text-align: center;
}

.db_events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.db_events-table th,
.db_events-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.db_events-table th {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

.db_events-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.db_events-table tr:hover {
  background-color: #e6f0fa;
}

.db_events-table td a.db_clsBlueButton {
  padding: 8px 16px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  touch-action: manipulation; /* Improve touch responsiveness */
}

.clsBlueContainer {
  padding: 15px;
  box-sizing: border-box;
}

/* Mobile styles */
@media (max-width: 768px) {
  .db_dashboard-page {
    padding: 10px;
  }

  section {
    padding: 10px;
    margin-bottom: 20px;
  }

  section h2 {
    font-size: 1.3em;
  }

  ul li {
    font-size: 14px;
    padding: 8px 0;
  }

  .db_events-table {
    font-size: 14px;
  }

  .db_events-table thead {
    display: none; /* Hide header on mobile */
  }

  .db_events-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    background-color: #fff;
  }

  .db_events-table tr:nth-child(odd) {
    background-color: #f9f9f9; /* Light gray for odd rows */
  }

  .db_events-table tr:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
  }

  .db_events-table td {
    display: block;
    text-align: left;
    padding: 8px 10px;
    border: none;
    font-size: 14px;
    background-color: #f9f9f9; /* Light gray for data fields */
    margin-bottom: 5px;
    border-radius: 4px;
  }

  .db_events-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 130px;
    margin-right: 10px;
    color: #004085; /* Dark blue for label contrast */
    background-color: #cce5ff; /* Light blue background for labels */
    padding: 2px 8px;
    border-radius: 3px;
  }

  /* Show only critical columns on mobile */
  .db_events-table td:nth-child(1), /* Event Date */
  .db_events-table td:nth-child(2), /* Event Name */
  .db_events-table td:nth-child(5) { /* Action */
    display: flex;
    align-items: center;
  }

  .db_events-table td:nth-child(3), /* # of People Interested */
  .db_events-table td:nth-child(4) { /* Notes */
    display: none; /* Hide less critical columns */
  }

  .db_events-table td a.db_clsBlueButton {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin: 5px 0;
  }

  .clsBlueContainer {
    padding: 10px;
  }

  .db_match-teaser {
    font-size: 14px;
  }

  .db_dash-actions .clsBlueButton {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 10px auto;
    padding: 10px;
    font-size: 16px;
    text-align: center;
  }
}
.db_dash-random p {
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .db_dash-random p {
    font-size: 1.3em;
  }
}

.db_qotd-today, .db_qotd-yesterday {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.db_qotd-today h2, .db_qotd-yesterday h2 {
  color: #007bff;
  margin-bottom: 10px;
}

.db_qotd-today p, .db_qotd-yesterday p {
  font-size: 16px;
  margin-bottom: 10px;
}
/* app/assets/stylesheets/faqs.css */
.faqs-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.faqs-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.faqs-container h2 {
  font-size: 24px;
  color: #fff;
  margin: 20px 0 10px;
  text-align: left;
}

.faqs-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
  text-align: left;
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
/* app/assets/stylesheets/feedback.css */
.feedback-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.feedback-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.feedback-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.field select,
.field textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.field select option,
.field textarea::placeholder {
  color: #aaaaaa;
}

.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #ffeb3b;
  box-shadow: 0 0 5px rgba(255, 235, 59, 0.3);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.clsBlueButton {
  background-color: #ff6f61;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.clsBlueButton:hover {
  background-color: #e55a4e;
}

.clsCancelButton {
  background-color: #6c757d;
}

.clsCancelButton:hover {
  background-color: #5a6268;
}

.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.f_site-footer {
  background-color: #007bff;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.f_footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.f_footer-container p {
  font-size: 16px;
  margin: 10px 0;
}

.f_clsFooterLink {
  color: #ffeb3b; 
  text-decoration: none;
  margin: 0 10px;
}

.f_clsFooterLink:hover {
  color: #ffd700; /* Slightly darker yellow on hover */
  text-decoration: underline;
}
.gs_guided-search-page {
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
}
.s_clsGuidedDivSearchContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s_clsDivSearchMain {
  padding: 15px;
}
.s_clsDivListSavedSearches {
  padding: 15px;
  border-top: 1px solid #ccc;
}
.s_clsDivListSavedSearches h3 {
  margin-top: 0;
}
.s_clsDivListSavedSearches ul {
  list-style-type: none;
  padding: 0;
}
.s_clsDivListSavedSearches li {
  margin-bottom: 10px;
}
.s_clsDivListSavedSearches a {
  text-decoration: none;
  color: #007bff;
}
.s_clsDivListSavedSearches a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .s_clsGuidedDivSearchContainer {
    flex-direction: row;
  }
  .s_clsDivSearchMain {
    flex: 3;
    order: 1;
  }
  .s_clsDivListSavedSearches {
    flex: 1;
    order: 2;
    border-top: none;
    border-left: 1px solid #ccc;
  }
}
/* app/assets/stylesheets/home.css */
.home-container.clsBlueContainer {
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px;
}

.home-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.home-container h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.home-container h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 0;
}

.home-container h4 {
  font-size: 20px;
  color: #f0f8ff;
  margin-bottom: 10px;
}

.home-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
}

.hero-image {
  margin: 20px 0;
  border-radius: 10px;
  background: linear-gradient(45deg, #007bff, #00bcd4);
  height: 400px;
  color: #fff;
  line-height: 200px;
  font-size: 18px;
}

.value-prop,
.features,
.social-proof {
  margin: 30px 0;
}

.feature-box {
  display: inline-block;
  width: 30%;
  margin: 10px;
  vertical-align: top;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}



.social-proof em {
  font-style: italic;
  color: #e0e7ff;
}


@media (max-width: 800px) {
  .hero-image {
    height: 150px;
  }

  .feature-box {
    width: auto;
  }
}
.inv_page {
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.inv_hero_image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.inv_header h1 {
  font-size: 2rem;
  color: #007bff;
  margin: 1rem 0;
  text-align: center;
}

.inv_pitch p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.inv_form h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.inv_link_box, .inv_message_box, .inv_qr_box {
  margin-bottom: 1.5rem;
}

.inv_link_box input {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.inv_message_box textarea {
  width: 100%;
  height: 100px;
  padding: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.inv_qr_box img {
  max-width: 200px;
}

.inv_reward h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.inv_footer {
  text-align: center;
  margin-top: 2rem;
}

.clsBlueButton {
  background-color: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin: 0.5rem;
}

.clsBlueButton:hover {
  background-color: #0056b3;
}

@media (max-width: 720px) {
  .inv_header h1 {
    font-size: 1.5rem;
  }

  .inv_form h2, .inv_reward h2 {
    font-size: 1.25rem;
  }
}


.clsAnswersContainer {

  margin: 0 auto;
  padding: 20px;
  text-align: center;
}


.clsAnswersTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  user-select: none; /* Prevent text selection */
}

.clsAnswersTable td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.search-form .field {
  margin-bottom: 15px;
}

.clsNoAnswer {
  font-style: italic;
  color: #6c757d;
}

.clsEmoji {
  font-size: 1.2em;
}
/* FROM CODE */
.li_day-sky-login.clsBlueContainer {
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
}

.li_-login h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.li_day-sky-login h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.li_day-sky-login p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
}

.li_day-sky-login.clsBlueContainer,
.li_sign-up-page.clsBlueContainer {
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
}

.li_day-sky-login h1,
.li_sign-up-page h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.li_day-sky-login h2,
.li_sign-up-page h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.li_day-sky-login p,
.li_sign-up-page p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
}


.li_action-box {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.li_action-box p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}
.li_action-box.li_clsSkyGlow {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.li_action-box.li_clsSkyGlow:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.li_clsField {
  margin: 15px 0;
  text-align: left;
}

.li_clsInputGlow input {
  border: 2px solid #deb887;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.li_clsInputGlow input:focus {
  border-color: #f4a460;
  box-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
  outline: none;
}

.li_clsLabel {
  color: #f0d804;
}

.li_clsVibrantLabel {
  color: #FEBE10;
  font-weight: bold;
  text-align: left;
}

.clsPulseButton {
  background: #4682b4;
  border: none;
  padding: 12px 24px;
  font-size: 1.1em;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  color: white;
  animation: pulse 1.5s infinite;
}

.clsPulseButton:hover {
  background: #f4a460;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.li_clsSignupPrompt {
  margin-top: 20px;
  color: #f0f8ff;
  font-size: 18px;
}

.clsDesertLink {
  color: #1a3c5e; /* Navy blue for readability, matching li_clsVibrantLabel */
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.clsDesertLink:hover {
  color: #deb887; /* Burlywood tan on hover */
}

.clsDesertLink:hover::after {
  content: "✨";
  position: absolute;
  right: -20px;
  animation: sparkle 0.5s;
}

@keyframes sparkle {
  0% { opacity: 0; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-5px); }
}

.clsAlert {
  color: #ff4d4d;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.clsAlert ul {
  list-style: none;
  padding: 0;
}

.clsAlert li {
  font-size: 16px;
  margin: 5px 0;
}
/* File: app/assets/stylesheets/match_quest.css */
.match-quest-container {
  
  margin: 0 auto;
  padding: 20px;
}

.match-quest-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mq_clsMe {
  background-color: #ffd54f;
  border-radius: 5px; /* rounded container corners */
   padding: 10px;
}

.mq_clsYou {
  background-color: #80cbc4;
  border-radius: 5px; /* rounded container corners */
   padding: 10px;
}

.yes-no-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.form-input-radio {
  margin-right: -15px;
}

.form-input-radio:disabled + label {
  color: #888;
  cursor: not-allowed;
}

.priority-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.clsGreenContainer {
  background-color: #a7e1b8;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clsGrayContainer {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clsYellowContainer {
  background-color: #fffde7;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clsCenteredBlueText {
  color: #0288d1; /* Text color */
  text-align: center;
  font-size: 14px;
}

.clsTheirAnswerContainer {
  text-align: center;
}

.clsPriorityContainer {
  text-align: center;
}
.notifications-page .notifications-table {
  width: 100%;
  border-collapse: collapse;
}
.notifications-page th, .notifications-page td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
.clsBlueButton {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px;
  margin-right: 10px;
  display: inline-block;
  white-space: nowrap;
}
.notifications-page td:last-child {
  white-space: nowrap;
}
/* app/assets/stylesheets/others_quests.css */

.quests-clsQuestsContainer {
  text-align: center;
  padding: 20px;
  background-color: #e3f2fd;
  border-radius: 10px;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.highlight {
  color: #d81b60;
  font-weight: bold;
  font-size: 1.2em;
}
/* app/assets/stylesheets/others_quests_percentage.css */

.clsScrollContainer {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.clsQuestBox {
  background-color: #ffffff;
  border: 2px solid #007bff;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  min-width: 320px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.clsHighlight {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffffff;
  background-color: #007bff;
  border-radius: 8px;
  padding: 10px;
  display: block;
  margin-bottom: 15px;
}

.clsQuestBox p {
  margin: 8px 0;
  font-size: 1.4em;
  line-height: 1.4;
}

.clsQuestBox .gsp_category {
  color: #333333;
  font-size: 1em;
}

.clsQuestBox .gsp_question {
  font-size: 2em;
  font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .clsQuestBox {
    width: 280px;
    min-width: 280px;
    padding: 20px;
  }

  .clsHighlight {
    font-size: 2.2em;
    padding: 8px;
  }

  .clsQuestBox p {
    font-size: 1.3em;
  }

  .clsQuestBox strong {
    font-size: 1.4em;
  }

  .clsScrollContainer {
    gap: 10px;
    padding: 15px 5px;
  }

  .clsQuestsContainer {
    padding: 10px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.3em;
  }
}
/* app/assets/stylesheets/privacy.css */
.privacy-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.privacy-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.privacy-container h2 {
  font-size: 24px;
  color: #fff;
  margin: 20px 0 10px;
}

.privacy-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
}

.privacy-container ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.privacy-container ul li {
  font-size: 16px;
  color: #f0f8ff;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.privacy-container ul li:before {
  content: "🌟";
  position: absolute;
  left: 0;
  color: #ffeb3b;
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.quest-cross-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.quest-cross-table th,
.quest-cross-table td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: top;
  min-width: 120px;
  box-sizing: border-box;
}

.quest-cross-table td small {
  display: block;
}
p.summary {
  margin: 10px 0;
  padding: 10px;
  background-color: #e8f4f8;
  border-left: 4px solid #007bff;
  font-size: 16px;
}
/* app/assets/stylesheets/question_request.css */
.question-request-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.question-request-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.question-request-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.field input[type="text"]::placeholder,
.field select option,
.field textarea::placeholder {
  color: #aaaaaa;
}

.field input[type="text"]:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #ffeb3b;
  box-shadow: 0 0 5px rgba(255, 235, 59, 0.3);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.clsBlueButton {
  background-color: #ff6f61;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.clsBlueButton:hover {
  background-color: #e55a4e;
}

.clsCancelButton {
  background-color: #6c757d;
}

.clsCancelButton:hover {
  background-color: #5a6268;
}

.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* assets/stylesheets/questions.css */

.category {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
}

.clsCenteredButton {
  display: block;
  margin-left: 0; /* Ensure left alignment */
  margin-right: 0;
}

.form-input {
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  margin: 8px;
}

.form-input:focus {
  outline: none;
  border-color: #0288d1;
  box-shadow: 0 0 5px rgba(2, 136, 209, 0.3);
}

.questions-container {
  background-color: #e3f2fd;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.question-container h2 {
  font-size: 1.5em;
  margin: 10px 0;
}

.question-container p {
  margin: 5px 0;
}

.question-form {
  margin-top: 15px;
  display: block; /* Remove flex to simplify alignment */
}







.yes-no-buttons {
  gap: 10px;
  margin: 15px 0;
}

.clsCenteredLink {
  display: block;
  text-align: center;
}
.qp_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.qp_search_container {
  background-color: #e6f0ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.qp_blue_container {
  border: 1px solid #007bff;
}

.qp_search_form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.qp_field {
  flex: 1;
  min-width: 200px;
}

.qp_field label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.qp_field input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.qp_actions {
  display: flex;
  gap: 10px;
}

.qp_button {
  padding: 8px 16px;
  font-size: 14px;
}

.qp_questions_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.qp_questions_table th,
.qp_questions_table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.qp_questions_table th {
  background-color: #007bff;
  color: white;
}

.qp_questions_table tr:hover {
  background-color: #f5f5f5;
}

.qp_actions {
  text-align: center;
}

.qp_no_results {
  color: #555;
  font-style: italic;
  margin-top: 20px;
}

.qp_emoji {
  font-size: 1.2em;
}
.so_search-options-page {
  text-align: center;
  padding: 20px;
}

.so_search-options-page h1 {
 
  font-size: 2.5em;
  margin-bottom: 10px;
}

.so_search-options-page p {
  margin-bottom: 20px;
}

.so_search-options-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.so_search-option {
  flex: 1;

}

.so_clsFunButton {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.so_clsFunButton:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.so_clsAdvancedButton-autumn {
  background-color: #4682B4;
  color: #F5F5DC;
}

.so_clsQuickPickButton-autumn {
  background-color: #D4A017;
  color: #F5F5DC;
}

.so_clsGuidedButton-autumn {
  background-color: #556B2F;
  color: #F5F5DC;
}

.so_search-option p {
  font-size: 20px;
  margin-top: 10px;
}
/* app/assets/stylesheets/searches.css */

.clsCriterion {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  align-items: center;
}

.s_clsCboCategoryID {
  max-width: 175px;
}

.s_clsCboQuestionID {
  flex: 2;
  min-width: 200px;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.s_clsCboQuestionID option {
  white-space: normal;
}

.s_clsCboAnswer {
  width: 100px;
  }

  .s_clsCboPriority {
  width: 100px;
  }

.s_clsSearchesDivSearchContainer {
  display: flex;
  justify-content: space-between;
}

.s_clsDivSearchMain {
  flex: 3;
  padding-right: 20px;
}

.s_clsDivListSavedSearches {
  flex: 0 1 100px;
  max-width: 200px;
  padding-left: 10px;
  border-left: 1px solid #ccc;
}


select, input[type="text"] {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}




.s_clsRemoveCriterion {
  color: #d81b60;
  text-decoration: none;
  font-weight: bold;
}

.s_clsRemoveCriterion:hover {
  color: #a11245;
}

.s_clsDivFormActions {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inline-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inline-label {
  margin-right: 5px;
}

.inline-input {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 150px;
}



.edit-search-link {
  color: #0288d1;
  text-decoration: none;
  margin-left: 10px;
  font-size: 0.9em;
}

.edit-search-link:hover {
  color: #01579b;
  text-decoration: underline;
}

.answer-yes { color: #008000; }
.answer-no { color: #ff0000; }
.answer-unanswered { color: #ff8c00; }
.answer-na { color: #666666; }
.answer-skipped { color: #800080; }

.match {
  background-color: #00cc00; /* Green background */
  color: #ffffff; /* White text */
  border-radius: 8px; /* Rounded corners */
  padding: 4px 8px; /* Padding for better appearance */
  display: inline-block; /* Ensures the background wraps the text */
}

/* the individual questions */
.answer-matched {
  color: #008000; /* Green */
}
.answer-unmatched {
  color: #ff0000; /* Red */
}
.answer-unanswered {
  color: #ff8c00; /* Orange */
}
.zero-match {
  background-color: #ff0000; /* Red background */
  color: #ffffff; /* White text */
  border-radius: 8px; /* Rounded corners */
  padding: 4px 8px; /* Padding for better appearance */
  display: inline-block; /* Ensures the background wraps the text */
}

ul {
  list-style-type: none; /* Removes bullet points for all list items */
}

@media (max-width: 800px) {
  
  .s_clsSearchesDivSearchContainer {
    flex-direction: column;
    padding: 10px;
  }
  .s_clsDivSearchMain, .UserSearches {
    padding: 0;
    border: none;
  }
 
  select {
    width: 100%;
    max-width: none;
  }
  .s_clsDivFormActions {
    flex-direction: column;
    align-items: stretch;
  }
  .inline-form {
    flex-direction: column;
    align-items: stretch;
  }
  .inline-input {
    width: 100%;
  }
}


/* app/assets/stylesheets/terms.css */
.terms-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.terms-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.terms-container h2 {
  font-size: 24px;
  color: #fff;
  margin: 20px 0 10px;
  text-align: left;
}

.terms-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
  text-align: left;
}


.actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.clsUnansweredQuestionsContainer {
  text-align: center;
  padding: 20px;
  background-color: #e3f2fd;
  border-radius: 10px;
  margin: 20px auto;

  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.clsUnansweredQuestionsList {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.clsQuestion {
  margin: 10px 0;
  font-size: 1.1em;
}

.clsUnansweredQuestionsContainer h1 {
 
}
.clsEditAnswerContainer {
  color: #000000; /* Black text for visibility */
  margin: 0 auto; /* Center the container */
  text-align: center; /* Center text and inline elements */
}

.AdminAnswersNew_question-container h2 {
  font-size: 1.5em;
  margin: 10px 0;
}

.clsEditAnswerContainer .clsFormGroup {
  text-align: center; /* Align form fields left for readability */
  margin: 10px 0;
  width: 100%;
}

.clsEditAnswerContainer .clsFormGroup label,
.clsEditAnswerContainer .clsFormGroup p,
.clsEditAnswerContainer .clsFormGroup select,
.clsEditAnswerContainer .clsFormGroup input {
  color: #000000; /* Ensure all form elements have visible text */
}

.clsEditAnswerContainer .clsFormGroup p {
  margin: 5px 0;
  font-size: 16px;
}

.clsEditAnswerContainer .clsActions {
  display: flex;
  justify-content: center; /* Center buttons */
  gap: 10px;
  margin-top: 20px;
}

.clsSortLink {
  color: white;
  text-decoration: none;
}
.clsSortLink:hover {
  color: #e0f0ff;
  text-decoration: underline;
}
/* app/assets/stylesheets/user_password_account_recovery.css */
.recovery-page {
 
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recovery-page h1 {
  text-align: center;
  margin-bottom: 10px;
}

.recovery-page p {
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.field input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.field input[type="email"]:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.actions {
  display: flex;
  justify-content: space-between;
}


.clsCancelButton {
  background-color: #6c757d;
}

.clsCancelButton:hover {
  background-color: #5a6268;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}
.settings-page {

  margin: 20px auto;
  padding: 20px;
}

.settings-page h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.settings-page h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.user-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.user-info p {
  margin: 8px 0;
}

.user-info p strong {
  display: inline-block;
  width: 150px;
}

.settings-page .field {
  margin-bottom: 15px;
}

.settings-page .field label {
  display: block;
  font-weight: bold;
}

.settings-page .field input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.settings-page .actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}


.clsAlert {
  color: red;
  margin-bottom: 15px;
}
.us_search-page {
  text-align: left;
  padding: 20px;
}

.s_clsDivSearchMain {
  text-align: left;
}
.s_clsCriterion {
  text-align: left;
  margin-bottom: 15px;
}
.s_clsCboCategoryID, .s_clsCboQuestionID, .s_clsCboAnswer, .s_clsCboPriority {
  display: inline-block;
  margin-right: 10px;
}
.s_clsDeleteCriterion {
  display: inline-block;
  text-decoration: none;
}
.clsAlert {
  color: red;
  margin-bottom: 15px;
  text-align: left;
}
.s_clsDivFormActions {
  text-align: left;
}
.us_header-container {
  align-items: center;
  gap: 10px;
}
/* app/assets/stylesheets/application.css */
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory.
 *


 */

  body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  font-family: 'Lato', sans-serif;

}

.app_clsLightBlueText {
  color: #0288d1;
}
.app_clsCenterText {
 text-align: center;
}

 .app_clsSiteName {
  font-size: 24px;
  font-weight: bold;
  color:#FFFFFF;
  text-decoration: none;
}

.app_clsTagline {
  font-size: 20px; 
  color: #FFFFFF;
 text-decoration: none;
  margin-top: 1px; /* Minimal gap */
}


p {
  margin: 1em 0;
  border: none;
  background: none;
  padding-left: 10px; 
  padding-right: 10px;
}

th {  
  background-color: #0288d1;
  color: white;
  font-weight: bold; 
  font-size: 20px;
}

select {
  
  width: fit-content;
}

.app_clsMenuBarLogo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 0 5px;
  padding: 0;
}

.app_clsMenuBarLogo:hover .app_clsSiteName,
.app_clsMenuBarLogo:hover .app_clsTagline {
  text-decoration: none;
}

.clsBlueLink {
  color: #0288d1;
  text-decoration: none;
  padding: 5px 10px;
  font-weight: normal;
}

.clsBlueLink:hover {
  text-decoration: underline;
}

label {
  color: #0288d1;
}

.appclsLeftAlign {
  text-align: left;
}

.clsBlueContainer {
  background-color: #e3f2fd;
  margin: 20px;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 10 px;
  padding-left: 20px;

  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}




.clsButton {
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  color: white;
  display: inline-block;
  font-weight: bold;
  height: 40px;
  margin: 10px;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
}

.clsBlueButton {
  background-color: #0288d1;
}



.clsBlueButton:hover {
  background-color: #01579b;
}

.clsBlueButton:disabled {
  background-color: #b0bec5;
  cursor: not-allowed;
}

.clsCancelButton {
  background: #0288d1;
}

clsCancelButton:hover {
  background: #009ACD;
}

/* Debug Panel */
.clsErrorMessage {
  background-color: #d81b60;
  color: white;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 1px solid #a11245;
}

.clsDebugToggle {
  cursor: pointer;
  color: #0288d1;
  margin: 10px 0;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.clsDebugToggle:hover {
  color: #01579b;
}

.clsDebugPanel {
  display: none;
  background-color: #fff3cd;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

.clsDebugPanel.active {
  display: block;
}

.debug {
  background-color: #fff3cd;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

.debug pre {
  font-size: 0.9em;
  white-space: pre-wrap;
}


.notice, .error {
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

.notice {
  background-color: #dff0d8;
  color: #3c763d;
}

.error {
  background-color: #f2dede;
  color: #a94442;
}

/* General Styles */
h1 {
  color: #0288d1; /* Text color */
  font-size: 1.8em;
}

h2, h3 {
  color: #0288d1; /* Text color */
}



h1 span.clsEmoji, p span.clsEmoji {
  font-size: 0.8em;
  vertical-align: middle;
}

ul {
  list-style-type: none;
  padding: 0;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

/* Menu Bar */
@media (max-width: 1100px) {
  .clsMenuBar {
    background: linear-gradient(180deg, #007bff, #00ddeb);
    padding: 1px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    color: white;
    margin: 0;
    padding: 5px 0;
    justify-content: space-between;
  }

  .app_clsMenuBarLogo a {
    color: white;
    font-size: 2.05em;
    text-decoration: none;
    font-weight: bold;
  }

  .app_clsMenuBarLogo a span.emoji {
    font-size: 0.9em;
    vertical-align: middle;
  }

  .app_clsMenuBarLogo a span.clsEmoji, .UserName span.clsEmoji {
    font-size: 0.8em;
    vertical-align: middle;
  }

  .clsMenuBar ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .clsMenuBar li {
    margin: 5px 10px;
    text-align: center;
  }

  .clsMenuBar ul a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
  }

  .clsMenuBar ul a:hover {
    color: #e3f2fd;
  }

  .clsMenuBarUserName {
    margin-left: 10px;
  }

  .clsUserName {
    font-size: 1.1em;
    font-weight: bold;
  }

  #hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  #hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  #hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  #hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  #menu-content {
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #0288d1;
    border: 1px solid #01579b;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 200px;
  }

  #menu-content ul {
    display: inherit;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #menu-content li {
    padding: 8px 15px;
    margin: 0;
  }

  #menu-content li a, #menu-content li button {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: block;
  }
  #menu-content li a:hover, #menu-content li button:hover {
    color: #e3f2fd;
  }

  #menu-content .clsBlueButton {
    background-color: #01579b;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
  }
  #menu-content .clsBlueButton:hover {
    background-color: #003d6b;
  }

  .tbd-link {
    color: #b0bec5;
    font-style: italic;
  }

  .clsMenuBar .clsMenuLink:not(.clsAuthLink) {
    display: none;
  }
}

@media (min-width: 801px) {
  .clsMenuBar {
    background: linear-gradient(180deg, #007bff, #00ddeb); /* background-color: #0288d1; */
    padding: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }

  .app_clsMenuBarLogo a {
    color: white;
    font-size: 2.2em;
    text-decoration: none;
    font-weight: bold;
  }

  .app_clsMenuBarLogo a span.clsEmoji {
    font-size: 0.9em;
    vertical-align: middle;
  }

  .app_clsMenuBarLogo a span.clsEmoji, .UserName span.clsEmoji {
    font-size: 0.9em;
    vertical-align: middle;
  }

  .clsMenuBar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .clsMenuBar li {
    margin-left: 20px;
    text-align: center;
  }

  .clsMenuBar ul a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
  }

  .clsMenuBar ul a:hover {
    color: #e3f2fd;
  }

  .clsMenuBarUserName {
    margin-left: 20px;
  }

  .clsUserName {
    font-size: 1.1em;
    font-weight: bold;
  }
  #hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  #hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  #hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  #hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  #hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  #menu-content {
    position: absolute;
    top: 95px;
    left: 0;
    background-color: #0288d1;
    border: 1px solid #01579b;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 200px;
  }

  #menu-content ul {
    display: inherit;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #menu-content li {
    padding: 8px 15px;
    margin: 0;
  }

  #menu-content li a, .menu-content li button {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: block;
  }

  #menu-content li a:hover, .menu-content li button:hover {
    color: #e3f2fd;
  }

  #menu-content .clsBlueButton {
    background-color: #01579b;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
  }

  #menu-content .clsBlueButton:hover {
    background-color: #003d6b;
  }

  .tbd-link {
    color: #b0bec5;
    font-style: italic;
  }
}

@media (max-width: 800px) {
    .home-container h1 {
    font-size: 1.6em;
  }

  .clsBlueContainer {
      margin: 5px;
  }
}

.clsNoAnswer {
  font-size: 1.1em;
  color: #555;
  margin: 20px 0;
}

.clsNoAnswer a {
  margin-left: 5px;
}


.clsAnswersTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #f0f8ff;
}

.clsAnswersTable td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}



.clsAnswersTable tr:hover {
  background-color: #e0f0ff;
}

.clsUserTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #f0f8ff;
  border-radius: 8px;
  overflow: hidden;
}

.clsUserTable th,
.clsUserTable td {
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.clsUserTable th {
  background-color: #0288d1;
  color: white;
}

.clsUserTable tr:hover {
  background-color: #e0f0ff;
}

.app_clsRedButton {
  background-color: #d81b60;
}

.app_clsRedButton:hover {
  background-color: #a11245;
}

.app_clsRedButton.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.clsSearchForm {
  margin: 15px 0;
  display: inline-block;
}

.app_clsSearchInput {
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-width: 100%;
}

.app_clsSearchInput:focus {
  outline: none;
  border-color: #0288d1;
  box-shadow: 0 0 5px rgba(2, 136, 209, 0.3);
}


.clsUserTable th:nth-child(1), .clsUserTable td:nth-child(1) { width: fit-content; } /* UserName */
.clsUserTable th:nth-child(2), .clsUserTable td:nth-child(2) { width: fit-content; } /* Email */
.clsUserTable th:nth-child(3), .clsUserTable td:nth-child(3) { width: 15%; } /* Tier */
.clsUserTable th:nth-child(4), .clsUserTable td:nth-child(4) { width: 15%; } /* Activity Points */
.clsUserTable th:nth-child(5), .clsUserTable td:nth-child(5) { width: 10%; } /* Admin */
.clsUserTable th:nth-child(6), .clsUserTable td:nth-child(6) { width: 15%; } /* Actions */

.clsFormRow {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.app_clsFormField {
  flex: 1;
}

.app_clsFormField label {
  display: block;
  margin-bottom: 5px;
  color: #0288d1;
}

input[type="text"] {
  width: fit-content;
}


.app_clsFormField input[type="text"] {
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.app_clsFormField input[type="text"]:focus {
  outline: none;
  border-color: #0288d1;
  box-shadow: 0 0 5px rgba(2, 136, 209, 0.3);
}
.clsAdminYes {
  color: #d81b60; 
}
.flash.notice {
  background-color: #d81b60;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  text-align: center;
}
.flash-alert {
  background-color: #f2dede;
  color: #a94442;
  padding: 10px;
  margin-bottom: 10px;
}

.clsFormGroup {
  margin-right: auto;
  width: fit-content;
  text-align: center;
}
.clsFormGroupCentered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.clsActions {
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.app_clsDeleteButton {
  background-color: #ff4d4d;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
}
.app_clsDeleteButton:hover {
  background-color: #cc0000;
}

