From 18255812bab983af2fb80f8aa345637d944b7cb7 Mon Sep 17 00:00:00 2001 From: Chewbaccalakis Date: Thu, 29 Jan 2026 06:33:43 -0800 Subject: [PATCH] sorta fixed but may be out of time --- src/index.css | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 4d22e33..e205f76 100644 --- a/src/index.css +++ b/src/index.css @@ -110,4 +110,33 @@ dialog::backdrop { .photo img:hover { transform: scale(1.05); -} \ No newline at end of file +} + +.buttons { + display: flex; + justify-content: center; /* center buttons horizontally */ + gap: 16px; /* space between buttons */ + margin-top: 16px; /* optional spacing from other elements */ +} + +.buttons button { + flex: 0 0 auto; /* don’t stretch buttons */ +} + +button.yes { + background-color: #531300; /* red-ish for yes */ + color: #fff; +} + +button.yes:hover { + background-color: #7a1a00; /* slightly lighter red on hover */ +} + +button.no { + background-color: #3d3d3d; /* dark gray for no */ + color: #fff; +} + +button.no:hover { + background-color: #555555; /* lighter gray on hover */ +}