diff --git a/docs/how-to-cite.md b/docs/how-to-cite.md
index e693f501a75d9774a611e0efc7dde832c707e6c0..2fe68722185332d4a197430ae2a37f4cd67d43f0 100644
--- a/docs/how-to-cite.md
+++ b/docs/how-to-cite.md
@@ -4,5 +4,47 @@ When referencing the INJECT Exercise Platform, please cite our paper titled:
 This paper provides insights and practical experiences derived from a cybersecurity course where
 tabletop exercises were introduced utilizing the innovative technology of the INJECT Exercise Platform (IXP).
 
+When citing this paper please use this BibTeX entry:
+<div class="no-bcg">
+``` { . .copy}
+@inproceedings{Svabensky2024FromPaperToPlatform,
+    author    = {\v{S}v\'{a}bensk\'{y}, Valdemar and Vykopal, Jan and Hor\'{a}k, Martin and Hofbauer, Martin and \v{C}eleda, Pavel},
+    title     = {From Paper to Platform: Evolution of a Novel Learning Environment for Tabletop Exercises},
+    year      = {2024},
+    isbn      = {9798400706004},
+    publisher = {Association for Computing Machinery},
+    address   = {New York, NY, USA},
+    url       = {https://doi.org/10.1145/3649217.3653639},
+    doi       = {10.1145/3649217.3653639},
+    booktitle = {Proceedings of the 2024 on Innovation and Technology in Computer Science Education V. 1},
+    pages     = {213–219},
+    numpages  = {7},
+    location  = {Milan, Italy},
+    series    = {ITiCSE 2024}
+}
+```
+</div>
+
 For a comprehensive overview of tabletop exercises, we recommend our systematic literature review:
 [Research and Practice of Delivering Tabletop Exercises](https://www.muni.cz/en/research/publications/2390898).
+
+When citing this paper please use this BibTeX entry:
+<div class="no-bcg">
+``` { . .copy }
+@inproceedings{Vykopal2024ResearchAndPractice,
+    author    = {Vykopal, Jan and \v{C}eleda, Pavel and \v{S}v\'{a}bensk\'{y}, Valdemar and Hofbauer, Martin and Hor\'{a}k, Martin},
+    title     = {Research and Practice of Delivering Tabletop Exercises},
+    year      = {2024},
+    isbn      = {9798400706004},
+    publisher = {Association for Computing Machinery},
+    address   = {New York, NY, USA},
+    url       = {https://doi.org/10.1145/3649217.3653642},
+    doi       = {10.1145/3649217.3653642},
+    booktitle = {Proceedings of the 2024 on Innovation and Technology in Computer Science Education V. 1},
+    pages     = {220–226},
+    numpages  = {7},
+    location  = {Milan, Italy},
+    series    = {ITiCSE 2024}
+}
+```
+</div>
diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css
index 349bb3211b011a79e07c7b595bf2d28f08745ff6..b13fe95b5768e440bcee7830474e25cae3335cf7 100644
--- a/docs/stylesheets/extra.css
+++ b/docs/stylesheets/extra.css
@@ -231,3 +231,24 @@ tr td {
 .md-search__form:hover .md-search__icon {
     color: white !important;
 }
+
+.md-clipboard {
+    color: black;
+}
+
+.md-clipboard:hover {
+    color: white;
+}
+
+.md-typeset .no-bcg code {
+    background-color: #121212;
+    color: white !important;
+    border-color: #ffdd4e !important;
+    border-width: 2px !important;
+    border-style: solid;
+    border-radius: 1rem;
+}
+
+.no-bcg .md-clipboard {
+    color: #ffdd4e;
+}