html {
  font-family: "Salesforce Sans", sans-serif;
}
footer {
  max-width: 600px;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #EFF4FA;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feedback-footer {
  display: flex; /* Maintains the flex layout */
  align-items: center; /* Ensures vertical alignment */
  width: 100%; /* Ensures it uses the full width of the footer */
}

.feedback-footer img {
  width: 16px; /* Adjusted logo size */
  height: 16px; /* Adjusted logo size */
}

.feedback-footer p {
  margin: 0; /* Removes default margin */
  font-size: 14px; /* Adjusts font size for readability */
  line-height: 1.4; /* Adjusts line height */
}

/* Hover effect for links within the footer */
.feedback-footer a {
  color: #0b5cac; /* Link color */
  text-decoration: none; /* No underline by default */
}

.feedback-footer a:hover {
  text-decoration: underline; /* Underline on hover */
}

body {
  margin: 0;
  padding: 20px;
  background-color: #FAFBFE;
}

.help-link {
  color: #0b5cac; /* Or any color that fits your design */
  text-decoration: underline; /* Suggests clickability */
}
.faq-section {
  position: fixed;
  right: 20px;
  top: 50px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px; /* Adjusted for more internal space */
  max-width: 600px;
  z-index: 99;
  font-size: 16px; /* Adjust as needed */
}

.faq-question {
  font-weight: bold;
  margin-top: 20px; /* Adjust as needed */
}

.faq-answer {
  margin-bottom: 20px; /* Adjust as needed */
  text-align: justify;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h2 {
  text-align: center; /* Centers the text of the h2 element */
  margin-top: 0;
}

h4 {
  text-align: center; /* Centers the text of the h4 element */
  margin-top: 0;
}

h2,
p,
label {
  font-family: inherit;
  margin-top: 0;
  width: 100%; /* Ensures full width */
  padding: 8px;
  margin-bottom: 20px;
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}
select,
textarea,
input[type="submit"],
input[type="email"],
input[type="text"],
#demoScenario {
  font-family: inherit;
  margin-top: 0;
  width: 100%; /* Ensures full width */
  padding: 8px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}
select,
textarea,
input[type="submit"],
input[type="password"],
#demoScenario {
  font-family: inherit;
  margin-top: 0;
  width: 100%; /* Ensures full width */
  padding: 8px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}
#demoScenario {
  height: 160px;
  overflow-y: auto;
  background-color: #EFF4FA;
  color: #333;
  display: block; /* Ensures the div behaves like a block-level element */
}
.g-recaptcha-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; /* Optional: Add margin bottom for spacing */
}
input[type="submit"] {
  background-color: #0056D0;
  color: white;
  cursor: pointer;
  font-size: 16px;
}
.form-section {
  display: none;
}
.form-section.active {
  display: block;
}
.justified {
  text-align: justify;
}
.button-style {
  background-color: #0056D0; /* Background color */
  color: white; /* Text color */
  padding: 8px; /* Padding - adjust as needed to match the height */
  text-decoration: none; /* Removes underline from links */
  border-radius: 8px; /* Border radius for rounded corners */
  font-size: 16px; /* Font size */
  display: inline-block; /* Allows applying padding and margins */
  width: 100%; /* Full width */
  box-sizing: border-box; /* Border and padding are included in the width */
  text-align: center; /* Centers text */
  margin: 0; /* Removes default margin */
  border: none; /* Removes border */
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap onto multiple lines */
  justify-content: center;
  margin: 10px 0;
}

.checkbox-option {
  margin: 10px 10px; /* Adjust spacing between checkboxes */
}

.checkbox-option input[type="checkbox"] {
  display: none; /* Hide the default checkbox */
}

.checkbox-option label {
  cursor: pointer;
  padding: 5px 10px;
  background-color: #f0f0f0; /* Default background color */
  color: #555;
  border-radius: 20px;
  border: 1px solid #ccc; /* Add border style */
  transition: background-color 0.3s ease, color 0.3s ease; /* Add transition for smoother color change */
}

.checkbox-option label:hover {
  background-color: #e0e0e0; /* Change background color on hover */
}

.checkbox-option input[type="checkbox"]:checked + label {
  background-color: #FFFFFF; /* Change background color when checked */
  color: #1E1F27; /* Change text color when checked */
}


.g-recaptcha {
  display: inline-block;
}

.language-switcher {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.language-switcher select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f0f0f0;
    font-size: 14px;
    cursor: pointer;
}

.language-switcher select:hover {
    background-color: #e0e0e0;
}

.tcm_button {
  background-color: #0056D0;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 10px 0;
  border: none;
  cursor: pointer;
}