/* ================================
   Taxi Booking Form Styles
   Save this as: taxi-booking.css
   Location: /wp-content/themes/your-child-theme/
   ================================ */

/* Import Google Font: DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600&display=swap');

.taxi-form {
    font-family: 'DM Sans', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Labels */
.taxi-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

/* Inputs & Selects */
.taxi-form input[type="text"],
.taxi-form input[type="email"],
.taxi-form input[type="tel"],
.taxi-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
}

/* Readonly fields (distance, fare) */
.taxi-form input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* Submit Button */
.taxi-form input[type="submit"],
.taxi-form button {
    background-color: #FACD01;
    color: #000;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.taxi-form input[type="submit"]:hover,
.taxi-form button:hover {
    background-color: #e0b801; /* darker shade */
}

/* Responsive */
@media (max-width: 600px) {
    .taxi-form {
        padding: 15px;
    }
}
