From 7c97b4a844b079f033d6dfeaaacad08828c9c98e Mon Sep 17 00:00:00 2001
From: 65160270 <65160270@go.buu.ac.th>
Date: Mon, 24 Mar 2025 15:45:11 +0700
Subject: [PATCH] update-edit

---
 public/css/style.css | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/public/css/style.css b/public/css/style.css
index 39a11da..812ccde 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -437,16 +437,22 @@ footer {
 }
 
 .edit-btn {
-    background-color: #ffc107;
-    color: black;
-    padding: 5px 10px;
-    text-decoration: none;
-    border-radius: 5px;
-    border: 1px solid #ffc107;
+    padding: 0.5rem 1rem;
+    border: 1px solid #ccc;
+    background-color: #f8f9fa;
+    color: #333;
+    font-size: 1rem;
     cursor: pointer;
+    border-radius: 5px;
+    transition: background 0.3s, transform 0.2s;
 }
 
 .edit-btn:hover {
-    background-color: #e0a800;
-    border-color: #e0a800;
+    background-color: #e2e6ea;
+    transform: scale(1.05);
+}
+
+.edit-btn:active {
+    background-color: #d6d8db;
+    transform: scale(0.95);
 }
\ No newline at end of file
-- 
GitLab