fix:styling for time-slot
diff --git a/erpnext/www/book-appointment/index.html b/erpnext/www/book-appointment/index.html
index 1f6dd2e..e1355a7 100644
--- a/erpnext/www/book-appointment/index.html
+++ b/erpnext/www/book-appointment/index.html
@@ -26,7 +26,7 @@
                 </div>
             </div>
         </div>
-        <div class="row mt-3" id="timeslot-container">
+        <div class="mt-3" id="timeslot-container">
 
         </div>
         <div class="row justify-content-center mt-3">
diff --git a/erpnext/www/book-appointment/index.js b/erpnext/www/book-appointment/index.js
index 1b7a801..f2496da 100644
--- a/erpnext/www/book-appointment/index.js
+++ b/erpnext/www/book-appointment/index.js
@@ -99,12 +99,6 @@
         return
     }
     window.slots.forEach((slot, index) => {
-        // Add a break after each 8 elements
-        if (index % 8 == 0) {
-            let break_element = document.createElement('div');
-            break_element.classList.add('w-100');
-            timeslot_container.appendChild(break_element);
-        }
         // Get and append timeslot div
         let timeslot_div = get_timeslot_div_layout(slot)
         timeslot_container.appendChild(timeslot_div);
@@ -116,7 +110,6 @@
     let start_time = new Date(timeslot.time)
     let timeslot_div = document.createElement('div');
     timeslot_div.classList.add('time-slot');
-    timeslot_div.classList.add('col-md');
     if (!timeslot.availability) {
         timeslot_div.classList.add('unavailable')
     }