/* Shield Chat Integration into Booking Page */

.pb2-mode-switcher {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0;
}

.pb2-mode-switcher__tab {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: #6b7280;
}

.pb2-mode-switcher__tab:hover {
  border-color: #1e40af;
  color: #1e40af;
}

.pb2-mode-switcher__tab--active {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}

.pb2-mode-switcher__tab--active:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

/* Shield Chat Container */
.pb2-shield-chat-wrapper {
  display: none;
  min-height: 500px;
}

.pb2-shield-chat-wrapper.pb2-shield-chat-wrapper--active {
  display: block;
}

/* Quick form wrapper */
.pb2-quick-form-wrapper {
  display: block;
}

.pb2-quick-form-wrapper.pb2-quick-form-wrapper--hidden {
  display: none;
}

/* Responsive */
@media (max-width: 640px) {
  .pb2-mode-switcher {
    gap: 4px;
  }

  .pb2-mode-switcher__tab {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}
