.bst-taxi-form {
    max-width: 1200px;
    margin: 20px auto;
    padding: 24px 26px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    box-sizing: border-box;
    font-family: inherit;
}

.bst-taxi-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.bst-step {
    flex: 1;
    text-align: center;
}
.bst-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 4px;
}
.bst-step-circle-active {
    border-color: #ffc800;
    background-color: #ffc800;
    color: #000;
}
.bst-step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bst-step-panel {
    display: none;
}
.bst-step-panel-active {
    display: block;
}

.bst-layout {
    display: flex;
    gap: 20px;
}
.bst-left,
.bst-right {
    flex: 1;
}
#bst-map {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.bst-field {
    margin-bottom: 12px;
}
.bst-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.bst-field input,
.bst-field select,
.bst-field textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.bst-field-row {
    display: flex;
    gap: 10px;
}
.bst-field-row .bst-field {
    flex: 1;
}

.bst-trip-info {
    margin-top: 10px;
    padding: 10px 12px;
    background: #fff7d1;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.bst-buttons {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.bst-taxi-btn {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
}
.bst-taxi-btn-primary {
    background: #ffc800;
    border-color: #ffc800;
}
.bst-taxi-btn:hover {
    opacity: 0.9;
}

.bst-error {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #ffe5e5;
    color: #b30000;
    font-size: 13px;
}

.bst-layout-vehicles {
    align-items: flex-start;
}
#bst-vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bst-vehicle-card {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 8px;
    cursor: pointer;
    background: #fafafa;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.bst-vehicle-card:hover {
    border-color: #ffc800;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bst-vehicle-selected {
    border-color: #ffc800;
    box-shadow: 0 0 0 2px rgba(255,200,0,0.3);
    background: #fffbe6;
}
.bst-vehicle-inner {
    display: flex;
    gap: 10px;
}
.bst-vehicle-thumb img {
    width: 90px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
}
.bst-vehicle-info {
    font-size: 13px;
    flex: 1;
}
.bst-vehicle-title {
    font-weight: 700;
    margin-bottom: 4px;
}
.bst-vehicle-meta {
    margin-bottom: 3px;
}
.bst-vehicle-price {
    font-weight: 700;
}

/* Samenvatting (stap 2 & 3) */
.bst-summary-card {
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
    padding: 10px 12px;
}
.bst-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 3px 0;
    font-size: 13px;
}
.bst-summary-label {
    font-weight: 600;
    color: #555;
}
.bst-summary-value {
    text-align: right;
}
.bst-summary-card-final {
    max-width: 700px;
    margin: 10px auto 0 auto;
    background: #fffdf2;
    border-color: #ffe28a;
}
.bst-summary-row-title {
    border-bottom: 1px solid #f2e2a8;
    padding-bottom: 6px;
    margin-bottom: 4px;
    font-size: 14px;
}
.bst-summary-row-price .bst-summary-label {
    font-size: 14px;
}
.bst-summary-row-price .bst-summary-value {
    font-weight: 700;
    font-size: 15px;
}

.bst-summary-final {
    margin-top: 10px;
}

.bst-summary-note {
    font-size: 13px;
    margin-top: 8px;
    color: #666;
}

@media (max-width: 800px) {
    .bst-layout {
        flex-direction: column;
    }
    .bst-summary-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .bst-summary-value {
        text-align: left;
    }
}


.pac-container{z-index:99999 !important;}
