/* HTTP Status Tool Styles */

/* Variables */
:root {
  --primary-color: #222;
  --primary-hover: #0a2c54;
  --primary-light: #e5edf7;
  --success-color: #37ACA4;
  --redirect-color: #FF9800;
  --client-error-color: #F44336;
  --server-error-color: #9C27B0;
  --text-primary: #103667;
  --text-secondary: #4a596a;
  --text-light: #6b7c93;
  --bg-light: #f8faff;
  --bg-white: #fff;
  --border-color: #dfe3eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.06);
  --border-radius: 8px;
  --transition: all 0.2s ease-in-out;
}


/* Reset and Base Styles */
.http-status-tool-template {
  color: #333;
  line-height: 1.5;
}
.two-column-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 16px;
}


.hide {
  display: none !important;
}

/* Hero Section - Flex Layout */
.http-status-tool-hero {
  
  background-color: #00316A;
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.http-status-tool-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/fx/assets/img/special-pages/http-status-tools/right-spiral.svg), url(/wp-content/themes/fx/assets/img/special-pages/http-status-tools/left-spiral.svg);
  background-size: 600px auto, 500px auto;
  background-position: center right, center left;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.http-status-tool-hero__content {
  position: relative;
  z-index: 2;
}

.hero-flex-layout {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-direction: column;
}

.hero-form-column {
  flex: 1;
  max-width: 100%;
  z-index: 2;
}

.hero-content-column {
  flex: 1;
  text-align: center;
  z-index: 2;
  color: white;
}

.hero-card {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 28px;
  background-color: white;
  margin-top: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}


.http-status-tool-hero__title {
  color: var(--White, #FFF);
  text-align: center;
  /* Default Headings/H2/Desktop */
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 56px; /* 116.667% */
  letter-spacing: -1.728px;
  animation: fadeInDown 0.8s ease-out;
}

.http-status-tool-hero__description {
  font-size: 18px;
  margin: 0 auto 24px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-content-column .http-status-tool-hero__title {
  text-align: center;
  margin-top: 24px;
  color: white;
}

.hero-content-column .http-status-tool-hero__description {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: white;
  display: flex;
}

.hero-content-column .hero-features {
  justify-content: center;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
  color: white;
  position: relative;
}

.hero-feature:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.25);
}

.hero-feature__icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature__icon svg {
  fill: currentColor;
}
.hero-quick-guide__step.tooltip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Enhanced Tooltip Styles for Hero Section */
.hero-feature.tooltip .tooltip-text,
.hero-quick-guide__step.tooltip .tooltip-text {
  visibility: hidden;
  width: 220px;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 10px 14px;
  position: absolute;
  z-index: 100;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  pointer-events: none;
  white-space: normal;
  display: none!important;
}

.hero-feature.tooltip .tooltip-text:after,
.hero-quick-guide__step.tooltip .tooltip-text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

.hero-feature.tooltip:hover .tooltip-text,
.hero-quick-guide__step.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Desktop visibility */
.desktop-only {
  display: flex;
}

/* Media queries */
@media (max-width: 500px) {
  .saved-results-actions {
    flex-wrap: wrap;
  }
  .saved-results-actions button {
    width: fit-content;
    flex: initial!important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .hero-feature.tooltip .tooltip-text {
    width: 180px;
    bottom: 120%;
  }
}

@media (max-width: 992px) {
  .hero-flex-layout {
    flex-direction: column;
  }
  
  .hero-content-column {
    order: 1;
    margin-bottom: 30px;
  }
  
  .hero-form-column {
    order: 2;
    max-width: 100%;
    width: 100%;
  }
  
  .http-status-tool-hero {
    padding: 50px 0 80px;
  }
  
  .http-status-tool-hero__title {
    font-size: 32px;
  }
  
  .http-status-tool-hero__description {
    font-size: 16px;
  }
  
  .hero-features {
    gap: 12px;
  }
}

/* Form Section */
.http-status-tool-form-section {
  padding: 0 0 60px;
}

.http-status-tool-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 32px;
  margin: 0 auto;
  margin-top: -20px;
  position: relative;
}

.http-status-tool-form__header {
  margin-bottom: 24px;
}

.http-status-tool-form__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.http-status-tool-form__description {
  color: #333;
  margin: 0;
}

/* Enhanced Form Layout */
.http-status-tool-form__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.http-status-tool-form__input {
  width: 100%;
}

.http-status-tool-form__input label {
  display: block;
  margin-bottom: 0px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
  display: flex;
}

.http-status-tool-form__input-wrapper {
  position: relative;
  margin-bottom: 5px;
}

.http-status-tool-form__input textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  min-height: 120px;
  font-family: inherit;
  transition: var(--transition);
  resize: vertical;
  border-radius: var(--s1, 8px);
  background: var(--Vivid-Blue-vivid-000, #F5F8FF);
  color: #333;
  margin-top: 8px;
}

.http-status-tool-form__input textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(8, 58, 116, 0.1);
}

/* Validation styling - updated to use border colors instead of icons */
.http-status-tool-form__input textarea.valid {
  border-color: var(--success-color);
  box-shadow: 0 0 0 1px var(--success-color);
}

.http-status-tool-form__input textarea.invalid {
  border-color: var(--client-error-color);
  box-shadow: 0 0 0 1px var(--client-error-color);
}

.validation-error-message {
  color: var(--client-error-color);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.http-status-tool-form__input textarea.invalid + .validation-error-message {
  display: block;
}

.validation-success-message {
  color: var(--success-color);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.http-status-tool-form__input textarea.valid + .validation-success-message {
  display: block;
}

.validation-error.hide {
  display: none;
}

.http-status-tool-form__input textarea.invalid + .validation-error-message {
  display: none;
}

.http-status-tool-form__sidebar {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 20px;
  box-shadow: none;
  border: 1px solid #ebeef2;
}

.http-status-tool-form__options-group {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.options-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.http-status-tool-form__options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.http-status-tool-form__submit {
  margin-top: auto;
}

.clear-urls-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  opacity: 0.6;
  transition: var(--transition);
}

.clear-urls-btn:hover {
  opacity: 1;
}

.clear-urls-btn svg {
  fill: currentColor;
}

.url-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.url-examples-container {
  margin-bottom: 40px;
}

.url-examples__label {
  font-size: 14px;
  color: var(--text-light);
  margin-right: 4px;
}

.url-example {
  background: #f5f7fa;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.url-example:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.validation-error {
  color: var(--client-error-color);
  font-size: 14px;
  margin-top: 12px;
  padding: 14px;
  background-color: rgba(244, 67, 54, 0.08);
  border-radius: 8px;
  transform: translateY(0);
  opacity: 1;
  border: 1px solid rgba(244, 67, 54, 0.15);
  box-shadow: 0 1px 3px rgba(244, 67, 54, 0.1);
  transition: all 0.3s ease;
}

.validation-error p {
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
}

.validation-error.hide {
  display: none;
}

.validation-success {
  color: var(--success-color);
  font-size: 14px;
  margin-top: 12px;
  padding: 14px;
  background-color: rgba(76, 175, 80, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border: 1px solid rgba(76, 175, 80, 0.15);
  animation: fadeIn 0.5s ease forwards;
}

.validation-success svg {
  margin-right: 10px;
  fill: var(--success-color);
}

/* Character counter for textarea */
.char-counter {
  color: var(--Primary-Gray, #A9B4BC);
  text-align: right;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.067px;
  transition: all 0.3s ease;
}

.char-counter.warning {
  color: var(--redirect-color);
}

.char-counter.error {
  color: var(--client-error-color);
}

/* Input status indicators */
.input-status {
  display: none;
}

/* Input highlight effect */
.http-status-tool-form__input textarea.highlight {
  animation: highlight 1.5s ease;
}

@keyframes highlight {
  0% { background-color: rgba(8, 58, 116, 0.1); }
  100% { background-color: white; }
}

/* Tooltips for form elements */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: var(--text-primary);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 8px 12px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--text-primary) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Modern Toggle Switch Style */
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 12px;
  padding: 4px 0;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Toggle switch container */
.checkbox-custom {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #dfe3eb;
  border-radius: 12px;
  margin-right: 12px;
  transition: background-color 0.2s ease;
}

/* Toggle switch knob */
.checkbox-custom:after {
  content: "";
  position: absolute;
  display: block;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hover state */
.checkbox-label:hover .checkbox-custom {
  background-color: #c8cdd8;
}

/* Checked state */
.checkbox-label input:checked ~ .checkbox-custom {
  background-color: #207DE9;
}

.checkbox-label input:checked ~ .checkbox-custom:after {
  transform: translateX(20px);
}

/* Focus state */
.checkbox-label input:focus ~ .checkbox-custom {
  box-shadow: 0 0 0 1px rgba(8, 58, 116, 0.15);
}

/* Tooltip adjustments for toggle switches */
.http-status-tool-form__option.tooltip {
  position: relative;
  margin-bottom: 0;
  display: block;
  flex: 0 0 auto;
}

.http-status-tool-form__option .tooltip-text {
  visibility: hidden;
  width: 220px;
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 8px 12px;
  position: absolute;
  z-index: 100;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}

.http-status-tool-form__option .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.http-status-tool-form__option:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Active state style */
.checkbox-label:active .checkbox-custom:after {
  width: 22px;
  transform: translateX(16px);
}

.checkbox-label input:checked:active .checkbox-custom:after {
  transform: translateX(16px);
}

@media (max-width: 768px) {
  .http-status-tool-form__option .tooltip-text {
    width: 180px;
    left: auto;
    right: 0;
    top: 100%;
    margin-top: 5px;
  }
  
  .http-status-tool-form__option .tooltip-text::after {
    right: auto;
    left: 20px;
    top: -10px;
    border-color: transparent transparent var(--text-primary) transparent;
  }
}

/* Add spacing under checkbox text */
.checkbox-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Submit Button */
.http-status-tool-form__submit {
  text-align: center;
}

.http-status-tool-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.http-status-tool-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(8, 58, 116, 0.2);
}

.button-icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.button-icon svg {
  fill: currentColor;
}

/* Results Section */
.http-status-tool-results-section {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 32px 0px;
  margin: 0 auto;
  margin-top: 64px;
  position: relative;
}

/* Saved Results Banner */
.saved-results-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #f5f7fa; */
  border-radius: 8px;
  /* padding: 16px 24px; */
  margin-bottom: 24px;
  box-shadow: none;
}

.saved-results-info {
  display: flex;
  align-items: center;
}

.saved-results-icon {
  margin-right: 16px;
  color: var(--primary-color);
}

.saved-results-icon svg {
  fill: currentColor;
}

.saved-results-text {
  display: flex;
  flex-direction: column;
}

.saved-results-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.saved-results-timestamp {
  font-size: 14px;
  color: var(--text-secondary);
}

.saved-results-actions {
  display: flex;
  gap: 8px;
}

.load-saved-results-btn {
  background-color: var(--primary-color);
  color: white;
}

.load-saved-results-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.clear-saved-results-btn {
  background-color: transparent;
  color: var(--text-secondary);
}

.clear-saved-results-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .saved-results-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .saved-results-info {
    margin-bottom: 16px;
  }
  
  .saved-results-actions {
    width: 100%;
  }
  
  .saved-results-actions button {
    flex: 1;
  }
}

.http-status-tool-results__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.http-status-tool-results__title {
  color: var(--Primary-Darkest-Gray, #222);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  letter-spacing: -0.864px;
}

.http-status-tool-results__actions {
  display: flex;
  gap: 12px;
}

.http-status-tool-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 0px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--spacing-1, 8px);
  background: var(--Vivid-Blue-vivid-000, #F5F8FF);
}

.http-status-tool-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.http-status-tool-btn svg {
  fill: currentColor;
  margin-right: 6px;
}

/* Loading */
.http-status-tool-results__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  text-align: center;
}

.loader-container {
  margin-bottom: 16px;
}

.loader {
  border: 4px solid rgba(30, 136, 229, 0.2);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.loading-dots span {
  opacity: 0;
  animation: dot 1.5s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.5s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes dot {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.loading-subtext {
  color: var(--text-light);
  margin: 0;
}

/* Empty State */
.http-status-tool-results__empty {
  padding: 48px 0;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state__icon {
  margin-bottom: 16px;
  color: var(--text-light);
  opacity: 0.5;
}

.empty-state__icon svg {
  fill: currentColor;
}

.empty-state__text {
  color: #555;
  font-size: 18px;
  margin: 0;
}

/* Result Cards - Improved Design */
.http-status-result-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.http-status-result-card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}



.http-status-result-card__header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
  padding-right: 46px;
}

.http-status-result-card__header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.http-status-result-card__header:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transition: transform 0.3s ease;
}

.http-status-result-card.expanded .http-status-result-card__header:after {
  transform: translateY(-50%) rotate(-135deg);
}

.http-status-result-card__url {
  font-weight: 600;
  color: #333;
  margin: 0;
  font-size: 15px;
  word-break: break-all;
  margin-right: 40px;
  line-height: 1.4;
}

.http-status-result-card__status {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: white;
  display: inline-flex;
  align-items: center;
  box-shadow: none;
  min-width: 100px;
  justify-content: center;
  flex-shrink: 0;
}

.http-status-result-card__status.code-2xx {
  background-color: #EDF9F8;
  color: var(--success-color);
}

.http-status-result-card__status.code-3xx {
  background-color: #FFF2E6;
  color: #FF9900;
}

.http-status-result-card__status.code-4xx {
  background: #FDEDED;
  color: #DB2E31;
}

.http-status-result-card__status.code-5xx {
  background: #FDEDED;
  color: #DB2E31;
}

.http-status-result-card__status.code-error {
  background-color: var(--text-light);
}

.http-status-result-card__content {
  padding: 24px;
  background-color: #fafbfd;
  border-bottom: none;
}

.http-status-result-card__section {
  margin-bottom: 28px;
  animation: fadeContentIn 0.4s ease-out;
}

@keyframes fadeContentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.http-status-result-card__section:last-child {
  margin-bottom: 0;
}

.http-status-result-card__section-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(223, 227, 235, 0.7);
}

.http-status-result-card__section-title svg {
  fill: currentColor;
  margin-right: 8px;
  opacity: 0.7;
}

.http-status-result-card__section-content {
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  overflow-x: auto;
  box-shadow: none;
  color: #333;
  line-height: 1.6;
}

.http-status-result-card__section-content > p {
  font-size: 18px;
  margin-bottom: 0px;
}
/* Redirect Chain */
.http-status-redirect-chain {
  position: relative;
}

.http-status-redirect-chain__item {
  padding-left: 32px;
  position: relative;
  padding-bottom: 16px;
}

.http-status-redirect-chain__item:last-child {
  padding-bottom: 0;
}

.http-status-redirect-chain__item:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
}

.http-status-redirect-chain__item:last-child:before {
  display: none;
}

.http-status-redirect-chain__item:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.http-status-redirect-chain__item:first-child:after {
  background-color: var(--redirect-color);
}

.http-status-redirect-chain__item:last-child:after {
  background-color: var(--success-color);
}

.http-status-redirect-chain__url {
  font-weight: 600;
  word-break: break-all;
}

.http-status-redirect-chain__code {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Headers Table - Improved Design (moved from exclude-default-table-style) */
.http-status-headers-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #ebeef2;
  margin: 20px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.http-status-headers-table th, 
.http-status-headers-table td {
  padding: 14px 16px;
  text-align: left!important;
  line-height: 1.5;
  border: none;
  border-bottom: 1px solid #ebeef2;
  transition: background-color 0.2s ease;
}

.http-status-headers-table th {
  font-weight: 600;
  color: var(--text-primary);
  background-color: #f2f5fa;
  position: relative;
  font-size: 15px;
}

.http-status-headers-table th:first-child {
  width: 35%;
}

.http-status-headers-table td {
  word-break: break-all;
  color: var(--text-secondary);
  transition: all 0.15s ease;
}

.http-status-headers-table tr:hover td {
  background-color: rgba(0, 0, 0, 0.02);
}

.http-status-headers-table tr:last-child td {
  border-bottom: none;
}

.http-status-headers-table td code {
  background-color: #f0f2f5;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: monospace;
}

/* Make exclude-default-table-style inherit from http-status-headers-table */
.exclude-default-table-style {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  border: 1px solid #ebeef2;
  border-radius: 8px;
  overflow: hidden;
}

.exclude-default-table-style th,
.exclude-default-table-style td {
  text-align: left;
}

/* Tabs for HTTP Status Info */
.http-status-tool-info-section {
  padding: 60px 0;
  background-color: white;
}

.http-status-tool-info__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 14px;
}

.http-status-tool-info__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.http-status-tool-info__tabs {
  max-width: 800px;
  margin: 0 auto;
}

.http-status-tab-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  padding-bottom: 1px;
}

.http-status-tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.http-status-tab-btn:hover {
  color: var(--primary-color);
}

.http-status-tab-btn.active {
  color: var(--primary-color);
}

.http-status-tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 0;
}

.http-status-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.http-status-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.http-status-tab-content__inner {
  background-color: #f7f9fc;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: none;
  border: 1px solid #ebeef2;
}

.http-status-tab-content__icon {
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.http-status-tab-content__inner:hover .http-status-tab-content__icon {
  transform: scale(1.1);
}

.http-status-tab-content__icon svg {
  fill: currentColor;
}

.http-status-tab-content__icon.status-success {
  color: var(--success-color);
}

.http-status-tab-content__icon.status-redirect {
  color: var(--redirect-color);
}

.http-status-tab-content__icon.status-client-error {
  color: var(--client-error-color);
}

.http-status-tab-content__icon.status-server-error {
  color: var(--server-error-color);
}

.http-status-tab-content__title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

.http-status-tab-content__description {
  margin-top: 0;
  margin-bottom: 24px;
  color: #333;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.http-status-tab-content__list {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 20px;
  color: #333;
}

.http-status-tab-content__list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.http-status-tab-content__list li:last-child {
  margin-bottom: 0;
}

.http-status-tab-content__list li strong {
  color: #333;
  font-weight: 600;
}

/* Guide Section - Redesigned */
.http-status-tool-guide-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.http-status-tool-guide__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 14px;
}

.http-status-tool-guide__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.http-status-guide-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ebeef2;
}

.http-status-guide-content p {
  margin: 0 0 20px;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.http-status-guide-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .http-status-tool-hero {
    padding: 80px 0;
  }



  .http-status-tool-card {
    padding: 24px;
  }

  .http-status-tool-results__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .http-status-tab-navigation {
    flex-wrap: wrap;
  }

  .http-status-tab-content__inner {
    padding: 24px;
  }

  .http-status-tool-form__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .http-status-tool-form__sidebar {
    padding: 15px;
  }
  
  .http-status-guide-content {
    padding: 20px;
  }
  
  .http-status-guide-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .http-status-tool-hero__title {
    font-size: 28px;
  }

  .http-status-tool-hero__description {
    font-size: 16px;
  }

  .http-status-tool-results__actions {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .http-status-tool-btn {
    flex: 1;
  }

  .http-status-result-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .http-status-tab-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Summary stats */
.summary-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.summary-stat {
  flex: 1;
  min-width: 100px;
  background-color: #f7f9fc;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  transition: transform 0.2s ease;
  border: 1px solid #ebeef2;
}

.summary-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.summary-stat.success {
  color: #222;
  border: 1px solid var(--Tertiary-Teal-Lighter, #DBF3F1);
  background: linear-gradient(0deg, rgba(237, 249, 248, 0.50) 0%, rgba(237, 249, 248, 0.50) 100%), #FFF;
}

.summary-stat.success .summary-stat-count {
  color: var(--success-color);
}

.summary-stat.redirect {
  color: var(--text-primary);
}

.summary-stat.redirect .summary-stat-count {
  color: var(--redirect-color);
}

.summary-stat.error {

  border-radius: var(--s1, 8px);
  border: 1px solid var(--Primary-Lighter-Gray, #EBEDEF);
  background: linear-gradient(0deg, rgba(242, 242, 242, 0.50) 0%, rgba(242, 242, 242, 0.50) 100%), #FFF;
  color: #222;
}

.summary-stat.error .summary-stat-count {
  color: #A9B4BC;
}

.summary-stat-count {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.summary-stat-label {
  color: var(--Primary-Darkest-Gray, #222);
  text-align: center;
  /* Lead Text/Strong */
  font-family: Inter;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px; /* 166.667% */
  
}

/* Error Message */
.http-status-error-message {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: none;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ebeef2;
}

.error-icon {
  color: var(--client-error-color);
  opacity: 0.7;
  margin-bottom: 16px;
}

.error-icon svg {
  fill: currentColor;
}

.http-status-error-message p {
  margin: 0;
  font-size: 18px;
  color: var(--text-secondary);
}

/* Format Requirements */
.format-requirements {
  display: flex;
  align-items: flex-start;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--Tertiary-Teal-Lighter, #DBF3F1);
  background: linear-gradient(0deg, rgba(237, 249, 248, 0.25) 0%, rgba(237, 249, 248, 0.25) 100%), #FFF;
  

}

.format-requirements__icon {
  margin-right: 10px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.format-requirements__icon svg {
  fill: currentColor;
}

.format-requirements__text {
  color: #333;
  line-height: 1.4;
}

/* Export Notification */
.export-notification {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: rgba(76, 175, 80, 0.9);
  color: white;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  box-shadow: none;
  animation: fadeInUp 0.3s ease-out;
  z-index: 100;
}

.export-notification svg {
  fill: currentColor;
  margin-right: 8px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card .http-status-tool-form__header {
  text-align: left;
  margin-bottom: 20px;
}

.hero-card .http-status-tool-form__title {
  color: var(--primary-color);
}

.hero-card .http-status-tool-form__description {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.hero-card .format-requirements__text {
  font-size: 13px;
}

.hero-card .http-status-tool-form__input {
  margin-bottom: 20px;
}

.hero-card .http-status-tool-form__submit {
  text-align: center;
  margin-top: 28px;
}

.hero-card .http-status-tool-submit {
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 58, 116, 0.25);
}

.hero-card .http-status-tool-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(30, 136, 229, 0.35);
}

.invalid-urls-list {
  margin: 0 0 10px 0;
  padding-left: 20px;
  font-size: 13px;
  color: var(--client-error-color);
}

.invalid-urls-list li {
  margin-bottom: 4px;
  word-break: break-all;
}

.saved-results-urls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  max-width: 500px;
}

.saved-url-item {
  font-size: 12px;
  background-color: rgba(8, 58, 116, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.saved-url-more {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* Quick guide in hero section - Single Line */
.hero-quick-guide__steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 24px auto 30px;
  max-width: 800px;
  position: relative;
}
.one-line-connector {
  height: 2px;
  background: #6ADFD7;
  width: 88%;
  position: absolute;
  top: 21px;
  left: 27px;
}
.hero-quick-guide__connector {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 30px;
  position: relative;
  margin: 0 2px;
}

.hero-quick-guide__connector:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgba(255, 255, 255, 0.6);
}

.hero-quick-guide__step {
  display: flex;
  align-items: center;
  padding: 8px 5px;
  transition: all 0.2s ease;
  position: relative;
}

.hero-quick-guide__step:hover {
  transform: translateY(-2px);
}

.hero-step-number {
  display: flex
  ;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--Tertiary-Teal-Light, #6ADFD7);
      color: var(--Primary-Blue-Darkest, #083A74);
      text-align: center;
      font-family: Inter;
      font-size: 13px;
      font-style: normal;
      font-weight: 600;
      line-height: 18px;
}

.hero-quick-guide__step span:not(.tooltip-text) {
  font-size: 13px;
  color: white;
  line-height: 1.3;
  white-space: nowrap;
}

/* Hero features with tooltips */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
  color: white;
  position: relative;
}

.hero-feature:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.25);
}

.hero-feature__icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature__icon svg {
  fill: currentColor;
}

/* Desktop visibility */
.desktop-only {
  display: flex;
}

/* Media queries */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .hero-feature.tooltip .tooltip-text {
    width: 180px;
    bottom: 120%;
  }
}

/* HTTP Status Results Summary */
.http-status-results-summary {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 30px;
}

.summary-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}
.summary-title span {
  color: var(--Primary-Gray, #A9B4BC);
}
/* Tooltip Styles */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]:hover:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 12px;
  border-radius: 8px;
  background-color: #333;
  color: white;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  text-align: center;
  white-space: normal;
  animation: tooltipFadeIn 0.2s ease-out;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.http-status-result-card__content {
  padding: 24px;
  background-color: #fafbfd;
  border-bottom: none;
}

/* Status code table specific styles */
.tp-table.http-status-headers-table .tp-row {
  display: flex;
  border-bottom: 1px solid #ebeef2;
}

.tp-table.http-status-headers-table .tp-row:last-child {
  border-bottom: none;
}

.tp-table.http-status-headers-table .tp-col {
  padding: 14px 16px;
  text-align: left;
  flex: 1;
  line-height: 1.5;
}

.tp-table.http-status-headers-table .tp-row:first-child .tp-col {
  font-weight: 600;
  background-color: #f2f5fa;
  color: var(--text-primary);
}

.tp-table.http-status-headers-table .tp-row:not(:first-child):hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Keep the section title styles */
.tp-table.http-status-headers-table .tp-row .tp-col:only-child,
.tp-table.http-status-headers-table .tp-row .tp-col:first-child:last-child {
  font-weight: 600;
  color: var(--text-primary);
  background-color: #f2f5fa;
}

/* Override any padding or margin from the old styles */
.http-status-headers-table {
  padding: 0;
  margin: 20px 0;
}

/* Remove the shake animation */
/* Delete the shake animation keyframes and class from here */

/* Request History Styles - REMOVE THIS ENTIRE SECTION */
/*
.request-history-container {
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #f7f9fc;
  border-radius: 8px;
  border: 1px solid #ebeef2;
  overflow: hidden;
}

.request-history-title {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 14px;
  background-color: #f2f5fa;
  border-bottom: 1px solid #ebeef2;
  color: var(--text-primary);
}

.request-history-items {
  padding: 5px 0;
}

.request-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border-bottom: 1px solid rgba(235, 238, 242, 0.5);
  transition: background-color 0.2s ease;
}

.request-history-item:last-child {
  border-bottom: none;
}

.request-history-item:hover {
  background-color: rgba(8, 58, 116, 0.03);
}

.request-history-item-content {
  flex: 1;
}

.request-history-url {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.request-history-count {
  font-size: 12px;
  color: var(--text-light);
}

.request-history-use-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.request-history-use-btn:hover {
  background-color: var(--primary-hover);
}

@media (max-width: 576px) {
  .request-history-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .request-history-item-content {
    margin-bottom: 8px;
    width: 100%;
  }
  
  .request-history-use-btn {
    width: 100%;
  }
}
*/
/* END REQUEST HISTORY SECTION - TO BE REMOVED */

/* Reuse notification */
.reuse-notification {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -45px;
  padding: 8px 16px;
  background-color: rgba(8, 58, 116, 0.9);
  color: white;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.3s ease-out;
  z-index: 100;
}

.reuse-notification svg {
  fill: currentColor;
  margin-right: 8px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 


/**http-status-tool-info-top-section**/
.http-status-tool-custom-panel {
  padding: 48px;
  border-radius: 16px;
  background: var(--Primary-blue-00, #F9FBFF);
  /* Default Drop Shadow */
  box-shadow: 0px 1px 4px 0px rgba(34, 34, 34, 0.15);
  
}

.two-column-wysiwyg-section section.according-tabbed-section.bofu_faq.modern-2-template .row.sp_80 >div {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/** Info Top Section (moved from inline styles) **/
.http-status-info-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(34, 34, 34, 0.15);
  background: var(--bg-white);
}

.http-status-info-bar {
  width: 100%;
  height: 16px;
  background: #083A74;
}

.http-status-info-columns {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.http-status-info-column {
  flex: 1 1 0;
  background: var(--bg-white);
}

/* Add dividing line between columns except the last */
.http-status-info-column:not(:last-child) {
  border-right: 1px solid #CCE4FF;
}

.http-status-info-inner {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.http-status-info-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  color: var(--primary-color);
}

.http-status-info-description {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: #222;
}

.http-status-info-list {
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 28px;
  color: #222;
}

.http-status-tool-content-section{
  display: flex;
  flex-direction: column;
}

.http-status-tool-cta-content-wrapper {
  background: linear-gradient(0deg, rgba(204, 228, 255, 0.20) 0%, rgba(204, 228, 255, 0.20) 100%), #FFF;
  padding-bottom: 80px;
}
.http-status-tool-cta-content {
  display: flex;
  gap: 58px;
}
.http-status-tool-cta-content .cta-content {
  flex: 1;
}
@media (max-width: 768px) {
  .http-status-info-columns {
    flex-direction: column;
  }
  .http-status-info-column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #CCE4FF;
  }
  .http-status-info-inner {
    padding: 32px;
  }
  .http-status-info-title {
    font-size: 24px;
    line-height: 32px;
  }
  .http-status-info-description,
  .http-status-info-list {
    font-size: 16px;
    line-height: 24px;
  }

}

@media screen and (max-width: 1300px) {
  .http-status-tool-hero:before {
    background-size: 400px auto, 300px auto;
  }
}

@media screen and (max-width: 600px) {
  .http-status-tool-hero:before {
    display: none;
  }
  .two-column-space-between {
    flex-direction: column;
  }
  .hero-flex-layout {
    gap: 0px;
  }
  .http-status-tool-form__submit button {
    font-size: 18px!important;
    height: auto!important;
  }
  .char-counter {
    order: -1;
  }
}

@media screen and (max-width: 800px) {
  .http-status-tool-cta-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .img-w-tooltip {
    display: none;
  }
}

/** Results actions dropdown **/
.http-status-tool-results__actions {
  position: relative;
}

.actions-dropdown-toggle {
  position: relative;
  z-index: 201; /* above menu */
  display: inline-flex;
  align-items: center;    
  font-size: 18px;
}

.actions-caret {
  margin-left: 6px;
  display: inline-flex;
  transition: transform 0.2s ease;
}

.actions-dropdown-toggle.open .actions-caret {
  transform: rotate(180deg);
}

.actions-dropdown-menu {
  position: absolute;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  min-width: 175px;
  z-index: 200;
  top: 40px;
}

.actions-dropdown-menu.show {
  display: flex;
}

.actions-dropdown-menu .http-status-tool-btn {
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  width: 100%;
  justify-content: flex-start;
  padding: 10px 16px;
  background: none;
}

.actions-dropdown-menu .http-status-tool-btn:hover {
  background: var(--primary-light);
}

.actions-dropdown-menu .http-status-tool-btn:last-child {
  border-bottom: none;
}

/** Inline image tooltip (info icon in hero description) **/
.img-w-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
  margin-left: 6px;
}

.img-w-tooltip img {
  margin-bottom: 0px;
}

.img-w-tooltip .tooltip-text {
  position: absolute;
  bottom: 140%; /* above icon */
  left: 50%;
  transform: translateX(-50%);
  display: block;
  max-width: 300px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
  z-index: 105;
  width: 300px;
}

.img-w-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

.img-w-tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.img-w-tooltip.tooltip-open .tooltip-text {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}

/* List styling inside tooltip */
.img-w-tooltip .tooltip-text ul {
  margin: 0;
  padding-left: 18px;
}

.img-w-tooltip .tooltip-text li {
  margin-bottom: 6px;
}

.img-w-tooltip .tooltip-text li:last-child {
  margin-bottom: 0;
}

/* Hide tooltip entirely on small screens */
@media (max-width: 600px) {
  .img-w-tooltip  {
    display: none !important;
  }
}
.http-status-tool-form__options-wrapper {
  display: flex;
}
.http-status-tool-cta-description a {
  text-decoration: none!important;
  color: var(--Primary-Blue, #207DE9);
}
.http-status-tool-cta-description a:hover {
  text-decoration: underline!important;
}