/* WhatsApp Taxi Booking Styles */
.wtb-form-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow-y: auto;
}
.wtb-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wtb-form label {
    font-weight: bold;
    font-size: 14px;
}
.wtb-form input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}
.wtb-form button {
    background: #25D366;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.wtb-form button:hover {
    background: #1DA851;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .wtb-form-container {
        width: 95%;
        padding: 10px;
    }
    .wtb-form input, .wtb-form button {
        font-size: 14px;
    }
}
