/* 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%;
  }
}

/* Google Places Autocomplete pac-container overrides (v1.2.0) */
.pac-container {
  background: #1a2035;
  border: 1px solid #2d3a5e;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  font-family: inherit;
  z-index: 99999;
  margin-top: 2px;
}
.pac-item {
  padding: 8px 12px;
  cursor: pointer;
  color: #cbd5e1;
  border-top: 1px solid #2d3a5e;
  font-size: 13px;
  line-height: 1.4;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected {
  background: #243050;
  color: #f1c40f;
}
.pac-item-query {
  color: #f1c40f;
  font-size: 13px;
}
.pac-icon { display: none; }
.pac-matched { font-weight: 700; color: #f1c40f; }
