@font-face {
  font-family: 'Segoe UI Variable';
  src: url('/care/fonts/SegoeUI-VF/SegoeUI-VF.ttf') format('truetype-variations');
  font-weight: 200 700; /* Adjust the range based on available weights */
  font-stretch: 75% 100%; /* Adjust if the font supports width variations */
}


body {
    background-color: #f8f9fa;
     font-family: 'Segoe UI Variable', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
}



/* Existing styles */
.copied::before {
  position: relative;
  display: inline;
  content: "Copied";
  font-size: 1.00em;
  padding: 3px 4px;
  color: #fff;
  background-color: #8bb4e7;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 2s;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    left: 50px;
  }
  30% {
    opacity: 1;
    left: -10px;
  }
  80% {
    opacity: 1;
    left: -10px;
  }
  100% {
    opacity: 0;
    left: 30px;
  }
}

textarea {
  width: 100%;
  height: 4em;
  background-color: #f5f8fd;
}

@media only screen and (min-width: 768px) {
  .dontShow {
    display: none;
  }
}

/* Survey container styles */
.survey-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.survey-title {
  background-color: #007bff;
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.survey-title a {
  color: #ffffff;
  text-decoration: none;
}

.survey-title h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.survey-form {
  background-color: #f1f3f5;
  padding: 20px;
  border-radius: 5px;
}

/* Question styles */
.question {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f1f3f5;
  border-radius: 5px;
}

.question-label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.options-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.radio {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}

.radio input[type="radio"] {
  margin-right: 5px;
}

.radio label {
  font-size: 1rem;
}

/* Overall rating styles */
.overall-rating {
  background-color: #e9ecef;
}

/* Comments section styles */
.comments-section {
  margin-top: 30px;
}

.comments-section textarea {
  width: 100%;
  height: 150px;
}

/* Google Translate box styles */
.translate-box {
  margin-bottom: 20px;
  text-align: right;
}

/* Consent checkbox styles */
.consent-checkbox {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Submit button styles */
.submit-button {
  margin-top: 30px;
  text-align: center;
}

.submit-button input[type="submit"] {
  padding: 10px 20px;
  font-size: 1.1rem;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Responsive styles */
@media (max-width: 767px) {
  .survey-container {
    padding: 15px;
  }
  
  .options-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .radio {
    margin-right: 0;
  }
  
  .dontShow {
    display: none;
  }
}

.labelText {
  font-size: 1.5em;
}

.wide-tooltip + .tooltip > .tooltip-inner {
    max-width: 300px; /* Adjust width as needed */
    white-space: normal; /* Allows text wrapping */
}

/* Google Translate Widget Styling */
.translate-widget {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 10px 0;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-gadget-simple {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-family: inherit;
  display: inline-block !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: #495057;
}

.goog-te-gadget-simple .goog-te-menu-value:hover {
  text-decoration: none;
}

/* Hide Google Translate icon/logo */
.goog-te-gadget-simple .goog-te-gadget-icon {
  display: none !important;
}

/* Hide the "Powered by" text and Google Translate branding */
.goog-te-gadget-simple img {
  display: none !important;
}

.goog-te-gadget-simple span:first-child {
  display: none !important;
}

/* Style the dropdown link */
.goog-te-gadget-simple .goog-te-menu-value {
  color: #495057;
  text-decoration: none;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
  display: inline !important;
  font-weight: 500;
}

/* Hide separator and arrow styling */
.goog-te-gadget-simple .goog-te-menu-value span[style*="border-left"] {
  display: none !important;
}

#google_translate_element select {
  border: 1px solid #ced4da;
  background: white;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: inherit;
}

#google_translate_element .skiptranslate {
  white-space: nowrap;
}

/* Hide Google Translate top bar */
body {
  top: 0px !important;
}

.goog-te-banner-frame {
  display: none !important;
}