.taxi-booking-form {
    background: #fff !important;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.taxi-booking-form h2 {
    color: #003399;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    min-width: 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.return-trip-label {
    font-weight: bold;
    margin-right: 10px;
}

.return-fields {
    display: none;
}

button {
    background: #003399;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
button:hover {
    background: #002266;
}

/* Responsive layout for smaller devices */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        width: 100%;
    }
}


.return-trip {
    display: flex;
    align-items: center;
    gap: 15px;
}

.return-trip label {
    font-weight: normal;
    margin: 0;
}


input[type="date"]::before {
    content: attr(data-placeholder);
    color: #888;
    position: absolute;
    margin-left: 8px;
}
input[type="date"]:focus::before,
input[type="date"]:valid::before {
    content: "";
}