diff --git a/Vue/Consulterdetailbaremecollege/index.php b/Vue/Consulterdetailbaremecollege/index.php
index e8fb1c5..58e2667 100755
--- a/Vue/Consulterdetailbaremecollege/index.php
+++ b/Vue/Consulterdetailbaremecollege/index.php
@@ -12,6 +12,14 @@
= _("Barème par lettre clés") ?>
+
+
+ = _("Barème par lettre clés") ?>
+
+
@@ -118,9 +126,30 @@
+.btn-bareme {
+ display: flex;
+ width: 100%;
+ box-sizing: border-box;
+ justify-content: center;
+ align-items: center;
+ gap: 8px;
+ padding: 10px 20px;
+ background: #ffffff;
+ border: 1px solid #d0d0d0;
+ border-radius: 8px;
+ color: #1a1a1a;
+ font-size: 14px;
+ font-weight: 500;
+ text-decoration: none;
+ cursor: pointer;
+ transition: background 0.15s, border-color 0.15s, transform 0.1s;
+}
+.btn-bareme:hover {
+ background: #f5f5f5;
+ border-color: #aaaaaa;
+}
-
-
-
-
+.btn-bareme:active {
+ transform: scale(0.98);
+}