diff --git a/profile.html b/profile.html
index ac61e95..3302041 100644
--- a/profile.html
+++ b/profile.html
@@ -71,14 +71,14 @@
Notifications
diff --git a/testp.css b/testp.css
index f18cc51..d2cbe4e 100644
--- a/testp.css
+++ b/testp.css
@@ -204,7 +204,34 @@ body {
}
+.button-container {
+ display: flex;
+ justify-content: right;
+ gap: 15px;
+ margin-top: 15px;
+
+}
+
+#saveButton, #cancelButton {
+
+ background: rgb(51 51 51);
+ color: white;
+ border: none;
+ padding: 10px 20px;
+ cursor: pointer;
+ border-radius: 5px;
+ transition: background 0.3s, transform 0.3s;
+ position: relative;
+ height: 40px;
+}
+
+#saveButton:hover, #cancelButton:hover {
+
+ background-color: #000000;
+ transform: scale(1.05);
+
+}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {