/* 表单美化 */
.booking-form {
    @apply max-w-md mx-auto bg-white p-8 rounded-lg shadow-md;
}
.booking-form input, 
.booking-form select {
    @apply w-full px-4 py-2 mb-4 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent;
}
.booking-form button {
    @apply w-full bg-blue-600 text-white py-2 px-4 rounded-lg hover:bg-blue-700 transition;
}
.alert-success {
    @apply bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded;
}
