From dca8a0dbcf4125a10c5ca18008836902bea1612e Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 11 May 2026 16:59:22 +0300 Subject: [PATCH] style: replace blue buttons with original #E07D54 color Override Bootstrap btn-primary and btn-outline-primary to match the original project's button color. Co-Authored-By: Claude Sonnet 4.6 --- frontend/styles.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/frontend/styles.css b/frontend/styles.css index a72e783..8dd4b8d 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -40,6 +40,29 @@ button { margin-bottom: 5px; } +.btn-primary { + background-color: #E07D54; + border-color: #E07D54; + color: #fff; +} + +.btn-primary:hover, .btn-primary:focus, .btn-primary:active { + background-color: #c86a3d; + border-color: #c86a3d; + color: #fff; +} + +.btn-outline-primary { + color: #E07D54; + border-color: #E07D54; +} + +.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active { + background-color: #E07D54; + border-color: #E07D54; + color: #fff; +} + .card { margin: 10px; border-radius: 15px;