|
|
@@ -18,6 +18,47 @@
|
|
|
overflow-x: auto; /* Ensure content is scrollable on smaller screens */
|
|
|
}
|
|
|
|
|
|
+/* Modern A-Tag Styling */
|
|
|
+td a {
|
|
|
+ text-decoration: none;
|
|
|
+ padding: 8px 12px;
|
|
|
+ border-radius: 4px;
|
|
|
+ color: #ffffff;
|
|
|
+ font-size: 14px;
|
|
|
+ background-color: #54ccac;
|
|
|
+ transition: background-color 0.3s ease, transform 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+td a.share-link {
|
|
|
+ background-color: #7ccc54;
|
|
|
+}
|
|
|
+
|
|
|
+td a.participants-link {
|
|
|
+ background-color: #cc54c6;
|
|
|
+}
|
|
|
+
|
|
|
+td a:hover {
|
|
|
+ background-color: #5750d9;
|
|
|
+ transform: translateY(-2px);
|
|
|
+}
|
|
|
+
|
|
|
+/* Modern Button Styling */
|
|
|
+td button {
|
|
|
+ padding: 8px 12px;
|
|
|
+ border: none;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-size: 14px;
|
|
|
+ color: white;
|
|
|
+ background-color: #ff6b6b;
|
|
|
+ cursor: pointer;
|
|
|
+ transition: background-color 0.3s ease, transform 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+td button:hover {
|
|
|
+ background-color: #e05555;
|
|
|
+ transform: translateY(-2px);
|
|
|
+}
|
|
|
+
|
|
|
h2 {
|
|
|
text-align: center;
|
|
|
color: #333333;
|