/* === PDS BOOKING FORM === */
/* Popup overlay */
.pds-auth-tabs {
    display:flex;
    margin-bottom:20px;
}

.pds-auth-tab {
    flex:1;
    padding:10px;
    border:none;
    cursor:pointer;
    background:#eee;
}

.pds-auth-tab.active {
    background:#000;
    color:#fff;
}

.pds-auth-panel {
    display:none;
}

.pds-auth-panel.active {
    display:block;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease;
  z-index: 9999;
}
.pds-tabs {
    display:flex;
    gap:10px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.pds-tab {
    padding:10px 15px;
    background:#eee;
    border-radius:8px;
    text-decoration:none;
    color:#000;
}

.pds-tab.active {
    background:#000;
    color:#fff;
}
.pds-driver-dashboard-box{    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: auto;
    display: inline-block;
    min-width: 400px;}
.pds-driver-dashboard-box .button {
    background-color: #DB8C00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
}
.hero{    color: #fff;}
.hero h1{    color: #fff;}
.hero b{}
.hero p{}
.pds-open-register { cursor:pointer;
    background-color: #db8c00;
    color: #fff;
    border: 0;
    padding: 15px 30px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}
.pds-hidden-field {
    display: none !important;
}

/* Active state */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup box */
.popup-content {
  background: #fff;
  max-width: 700px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  transform: translateY(20px);
  transition: transform 300ms ease;
}

/* Slide in */
.popup-overlay.active .popup-content {
  transform: translateY(0);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}



.pds-booking-form {
    max-width: 520px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.pds-discount-badge {
    background: #e6f8ee;
    border: 1px solid #2ecc71;
    color: #1e8449;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
}

.pds-booking-form h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.pds-booking-form label {
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.pds-booking-form p {
    margin-bottom: 14px;
}

/* Input fields */
.pds-booking-form input[type="text"],
.pds-booking-form input[type="datetime-local"] {
    width: 100%;
    padding: 16px 14px;
    border-radius: 12px;
    border: none;
    background: #f2f2f2;
    font-size: 15px;
    outline: none;
}

.pds-booking-form input::placeholder {
    color: #777;
}

/* Time selector */
.pds-time-options {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.pds-time-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f2f2f2;
    padding: 10px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.pds-time-options input {
    accent-color: #000;
}

/* Book button */
.pds-booking-form button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pds-booking-form button:hover {
    background: #222;
}

/* Hide scheduled time by default */
.pds-schedule-time {
    display: none;
}

/* Mobile friendly */
@media (max-width: 480px) {
    .pds-booking-form {
        padding: 18px;
    }

    .pds-booking-form h2 {
        font-size: 28px;
    }
}
