From 8a29fa717efca632d08a68f4fa35018c6f1c5dcf Mon Sep 17 00:00:00 2001 From: Zane V <102631678+ZaneThePython@users.noreply.github.com> Date: Thu, 25 Sep 2025 10:09:54 -0400 Subject: [PATCH] Update styles.css --- styles.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/styles.css b/styles.css index 19f8305..bd1dce6 100644 --- a/styles.css +++ b/styles.css @@ -863,3 +863,24 @@ body::after { font-size: 0.9rem; } } +/* Popup styles */ +.popup { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background: rgba(26, 26, 26, 0.95); + padding: 20px 40px; + border-radius: 12px; + border: 2px solid #333; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); + z-index: 1000; + opacity: 1; + transition: opacity 0.3s ease; +} + +.popup-content { + color: #ffffff; + font-size: 1.1rem; + text-align: center; +}