/* Styles for tabs to fit text content and have padding */
/* Targeting list items (li) within the tab list */
ul.nav.nav-tabs.wpb_tabs_nav.ui-tabs-nav.vc_tta-tabs-list li.vc_tta-tab {
  width: auto !important; /* Ensure width is determined by content */
  display: inline-block !important; /* Make list items inline-block for horizontal layout */
  margin-right: 10px; /* Add space between tabs */
}

/* Remove right margin from the last tab */
ul.nav.nav-tabs.wpb_tabs_nav.ui-tabs-nav.vc_tta-tabs-list li.vc_tta-tab:last-child {
    margin-right: 0;
}

/* Targeting anchor tags (a) within the list items */
ul.nav.nav-tabs.wpb_tabs_nav.ui-tabs-nav.vc_tta-tabs-list li.vc_tta-tab a {
  width: auto !important; /* Ensure anchor width is determined by content */
  display: inline-block !important; /* Make anchor inline-block */
  padding: 10px 15px !important; /* Add padding around text (adjust values as needed) */
  vertical-align: middle !important; /* Vertically align text within the anchor */
  height: auto !important; /* Remove fixed height to allow padding to work for vertical centering */
}

/* Styles to center the entire tabs container (ul) */
ul.nav.nav-tabs.wpb_tabs_nav.ui-tabs-nav.vc_tta-tabs-list {
  display: inline-block !important; /* Allows text-align: center on parent to center this element */
  margin-left: auto; /* Attempt to center as a block (combined with display: inline-block this can work) */
  margin-right: auto; /* Attempt to center as a block */
  text-align: center; /* This centers the inline-block ul if its parent has enough width */
}

/* Style to hide the white highlight element (span.switcher-cursor) */
span.switcher-cursor {
  display: none !important; /* Hide the element */
}.rtc-btn {
  background: #000 !important;   /* solid black */
  color: #fff !important;        /* white text */
}

.rtc-btn:hover {
  background: #111 !important;   /* slightly lighter black on hover */
}
html { scroll-behavior: smooth; }
/* Global: kill nav underlines and “fake” underlines (borders/shadows) */
.site-header .menu a,
.site-nav .menu a,
.main-navigation .menu a {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-image: none !important; /* some themes use gradient underline */
}
.site-header .menu a:hover,
.site-header .menu .current-menu-item > a,
.site-header .menu .current_page_item > a {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
.mobile-nav .menu a,
.offcanvas-nav .menu a {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
.rtc-support-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.rtc-support-form .rtc-form-title {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rtc-support-form .rtc-form-intro {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.rtc-support-form label {
  font-weight: 500;
}

.rtc-support-form input[type="text"],
.rtc-support-form input[type="email"],
.rtc-support-form input[type="tel"],
.rtc-support-form input[type="number"],
.rtc-support-form textarea,
.rtc-support-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-top: 0.2rem;
  border-radius: 3px;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.rtc-support-form textarea {
  min-height: 150px;
}

.rtc-support-form input[type="file"] {
  margin-top: 0.3rem;
}

.rtc-support-form input[type="submit"] {
  background: #c8102e; /* RTC red */
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rtc-support-form input[type="submit"]:hover {
  opacity: 0.9;
}
