.fbd-search-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* --- Responsive & Modern Enhancements --- */
@media (max-width: 900px) {
  .fbd-search-container {
    max-width: 98vw;
    padding: 1rem;
  }
  .fbd-tabs {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .fbd-search-container {
    padding: 0.5rem;
    border-radius: 0;
    box-shadow: none;
  }
  .fbd-tabs {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
  }
  .fbd-form-group label {
    font-size: 0.95rem;
  }
  .fbd-form-group input,
  .fbd-form-group select {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
  .fbd-submit {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.05rem;
  }
  .fbd-result-item {
    padding: 1rem;
  }
}

/* Modern look: subtle gradients, shadow, hover, rounded corners */
.fbd-search-container {
  background: linear-gradient(135deg, #f0f4f8 0%, #e9ecef 100%);
  border: 1px solid #e3e6ea;
  box-shadow: 0 4px 24px rgba(34,113,177,0.10);
  animation: fbdFadeIn 0.8s;
}
.fbd-tabs {
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 1px 2px rgba(34,113,177,0.04);
  margin-bottom: 1rem;
}
.fbd-tab {
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.fbd-tab.active {
  background: #2271b1;
  color: #fff;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(34,113,177,0.08);
}
.fbd-search-form {
  animation: fbdFadeIn 0.7s;
}
.fbd-form-group input,
.fbd-form-group select {
  background: #f8f9fa;
  border: 1px solid #cfd8dc;
  transition: border 0.2s, box-shadow 0.2s;
}
.fbd-form-group input:focus,
.fbd-form-group select:focus {
  border-color: #2271b1;
  background: #fff;
  box-shadow: 0 0 0 2px #2271b133;
}
.fbd-submit {
  background: linear-gradient(90deg, #2271b1 0%, #135e96 100%);
  box-shadow: 0 2px 8px rgba(34,113,177,0.08);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
}
.fbd-submit:hover {
  background: linear-gradient(90deg, #135e96 0%, #2271b1 100%);
  box-shadow: 0 4px 16px rgba(34,113,177,0.12);
}
.fbd-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.fbd-result-item {
  border: 1px solid #e3e6ea;
  box-shadow: 0 1px 4px rgba(34,113,177,0.04);
  background: #f8f9fa;
  animation: fbdFadeIn 0.7s;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.fbd-result-item h4 {
    margin: 0 0 1rem 0;
    color: #2271b1;
}

.fbd-result-item p {
    margin: 0.5rem 0;
    color: #666;
}

.fbd-result-item strong {
    color: #333;
}

.fbd-error {
    color: #dc3545;
    padding: 1rem;
    background: #f8d7da;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    border-left: 4px solid #dc3545;
    animation: fbdFadeIn 0.7s;
}

.fbd-success {
    color: #28a745;
    padding: 1rem;
    background: #d4edda;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    border-left: 4px solid #28a745;
    animation: fbdFadeIn 0.7s;
}

/* Add smooth transitions */
.fbd-search-container, .fbd-tabs, .fbd-tab, .fbd-form-group input, .fbd-form-group select, .fbd-submit, .fbd-result-item {
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

/* Fade-in animation */
@keyframes fbdFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* SEO: visually hidden headings for screen readers and SEO bots */
.fbd-seo-heading {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Add iconography for results */
.fbd-result-item h4:before {
  content: '\1F4B3'; /* credit card emoji */
  margin-right: 0.5em;
}

.fbd-result-item p strong:before {
  content: '\1F4CD'; /* location pin emoji */
  margin-right: 0.25em;
  color: #2271b1;
}

/* Call to action banner */
.fbd-cta-banner {
  background: linear-gradient(90deg, #2271b1 0%, #135e96 100%);
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(34,113,177,0.10);
  animation: fbdFadeIn 1s;
}

.fbd-copy-btn {
  margin-left: 0.5em;
  padding: 0.2em 0.7em;
  font-size: 0.95em;
  background: #e9ecef;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  color: #2271b1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  vertical-align: middle;
}
.fbd-copy-btn:hover, .fbd-copy-btn:focus {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
}