/* Tokyo Taxi Booking — embed styles (dark theme, full width) */
.ttb-embed-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #0a0e1a; /* matches booking app night background */
  border-radius: 12px;
  overflow: hidden;
  line-height: 0; /* remove inline-frame gap */
}

.ttb-booking-iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #0a0e1a;
  transition: height 0.25s ease;
}

/* Make the page container hosting the shortcode full width on common themes */
.ttb-embed-wrap:only-child {
  border-radius: 0;
}
/* Tokyo Taxi Booking — unified search form styles (v1.1.0) */
.ttb-dir-toggle {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ttb-dir-opt {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  color: #334155;
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease;
  user-select: none;
}
.ttb-dir-opt:hover {
  border-color: #f5b301;
}
.ttb-dir-opt input[type="radio"] {
  accent-color: #f5b301;
  margin: 0;
  flex: none;
  width: 16px;
  height: 16px;
}
.ttb-dir-opt:has(input:checked) {
  border-color: #f5b301;
  background: #fff8e1;
  color: #1a202c;
}
.ttb-search-form select:disabled {
  opacity: 1;
  color: inherit;
  background-color: #f1f5f9;
  cursor: default;
}
@media (max-width: 480px) {
  .ttb-dir-opt {
    flex-basis: 100%;
  }
}
