From 79170ffa21c1a14ee42afb3b5b145162378e8ccb Mon Sep 17 00:00:00 2001 From: ImpulsiveFPS Date: Sun, 1 Feb 2026 17:14:16 +0100 Subject: [PATCH] Fix: Hide modals properly with display:none !important --- styles.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index cab65ca..0cc2370 100644 --- a/styles.css +++ b/styles.css @@ -1579,7 +1579,7 @@ body { Service Info Modals ======================================== */ .service-modal { - display: none; + display: none !important; position: fixed; inset: 0; z-index: 9999; @@ -1590,11 +1590,13 @@ body { padding: 2rem; opacity: 0; transition: opacity 0.3s ease; + pointer-events: none; } .service-modal.active { - display: flex; + display: flex !important; opacity: 1; + pointer-events: auto; } .modal-content {