document.addEventListener("DOMContentLoaded", function () {
let timeSlots = document.querySelectorAll(".am-time-string"); // Adjust selector if needed
timeSlots.forEach(function (slot) {
slot.innerText = slot.innerText.replace("ÖÖ", "").replace("ÖS", "").trim();
});
});
jQuery(document).ready(function ($) {
$(".am-time-string, .amelia-app-booking div").each(function () {
$(this).text($(this).text().replace("ÖÖ", "").replace("ÖS", "").trim());
});
});