#pdt-booking-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pdt-step {
    margin-bottom: 20px;
}

.pdt-form-group {
    margin-bottom: 15px;
}

.pdt-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.pdt-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pdt-form-row {
    display: flex;
    gap: 15px;
}

.pdt-form-row .pdt-form-group {
    flex: 1;
}

.pdt-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.pdt-btn:hover {
    background: #555;
}

.pdt-btn-secondary {
    background: #ccc;
    color: #333;
    margin-top: 10px;
}

.pdt-vehicle-card {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdt-vehicle-card img {
    max-width: 80px;
    height: auto;
    margin-right: 15px;
}

.pdt-vehicle-card h4 {
    margin: 0 0 5px 0;
}

.pdt-vehicle-card.selected {
    border-color: #333;
    background: #f0f0f0;
}

#pdt-stripe-element {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

#pdt-card-errors {
    color: red;
    margin-bottom: 15px;
}
