.venue-booking-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.venue-booking-form .form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.venue-booking-form .form-section h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.venue-booking-form .form-group {
    margin-bottom: 15px;
}

.venue-booking-form .form-group-checkbox {
    margin-bottom: 10px;
}

.venue-booking-form .form-actions {
    margin-top: 30px;
    text-align: center;
}

.venue-booking-form label {
    font-weight: 500;
}

.venue-booking-form .required {
    color: #dc3545;
}

.venue-booking-form input[type="text"],
.venue-booking-form input[type="email"],
.venue-booking-form input[type="tel"],
.venue-booking-form input[type="number"],
.venue-booking-form select,
.venue-booking-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.venue-booking-form .btn-primary {
    padding: 10px 30px;
    font-size: 16px;
}
/* Only keep the styles for setup options, since Tailwind handles the modal */
.setup-option {
    @apply mb-5 p-4 rounded bg-gray-50 transition duration-300 ease-in-out;
}

.setup-option:hover {
    @apply shadow-md transform -translate-y-1 cursor-pointer;
}

.setup-option.selected {
    @apply bg-blue-50 border border-blue-500;
}

.setup-image {
    width: 120px;
    height: auto;
}

.setup-image img {
    @apply max-w-full border border-gray-200 rounded p-1;
}

.setup-description {
    @apply flex items-center text-gray-600 text-sm;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .setup-option .flex {
        @apply flex-col;
    }

    .setup-image {
        @apply w-full mb-3;
    }
}