diff --git a/Portfolio.WebUI.Server/Components/Pages/PokemonSleep.razor.css b/Portfolio.WebUI.Server/Components/Pages/PokemonSleep.razor.css
new file mode 100644
index 0000000..eb28ea8
--- /dev/null
+++ b/Portfolio.WebUI.Server/Components/Pages/PokemonSleep.razor.css
@@ -0,0 +1,93 @@
+
+.tableFixHead {
+ overflow: auto;
+ height: 600px;
+}
+
+.tableFixHead thead th {
+ position: sticky;
+ top: 0;
+ z-index: 10;
+}
+
+.flip-container {
+ perspective: 1000px;
+ display: inline-block;
+ width: 90px;
+ height: 90px;
+ cursor: pointer;
+}
+
+.flipper {
+ transition: transform 0.6s;
+ transform-style: preserve-3d;
+ width: 100%;
+ height: 100%;
+ position: relative;
+}
+
+.flipped {
+ transform: rotateY(180deg);
+}
+
+.front, .back {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ backface-visibility: hidden;
+}
+
+.back {
+ transform: rotateY(180deg);
+}
+
+.badge {
+ width: 100px;
+ height: 30px;
+ color: white;
+ padding: 4px 8px;
+ text-align: center;
+ vertical-align: middle;
+ border-radius: 30px;
+}
+
+.statText {
+ position: relative;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ font-size: 13px;
+}
+
+.dozing {
+ background-color: #fcdc5e;
+}
+
+.snoozing {
+ background-color: #4ce8ed;
+}
+
+.slumbering {
+ background-color: #4588fb;
+}
+
+.berries {
+ background-color: #24d86b;
+}
+
+.ingredients {
+ background-color: #fdbe4d;
+}
+
+.skills {
+ background-color: #47a0fc;
+}
+
+.page-content {
+ position: relative;
+ z-index: 1; /* Higher than stickers */
+ background-color: rgba(255, 255, 255, 0.8); /* Optional translucent bg */
+}
+
diff --git a/Portfolio.WebUI.Server/Components/_Imports.razor b/Portfolio.WebUI.Server/Components/_Imports.razor
index 399609a..bb6b624 100644
--- a/Portfolio.WebUI.Server/Components/_Imports.razor
+++ b/Portfolio.WebUI.Server/Components/_Imports.razor
@@ -8,6 +8,7 @@
@using Microsoft.JSInterop
@using Portfolio.WebUI.Server
@using Portfolio.WebUI.Server.Components
+@using Portfolio.WebUI.Server.Components.Component
@using Portfolio.Domain.Features.Articles
@using Portfolio.Domain.Features.Pokemon
@using Portfolio.Domain.Features.Pokemon_Natures
diff --git a/Portfolio.WebUI.Server/Portfolio.WebUI.Server.csproj b/Portfolio.WebUI.Server/Portfolio.WebUI.Server.csproj
index d5ebdac..010a727 100644
--- a/Portfolio.WebUI.Server/Portfolio.WebUI.Server.csproj
+++ b/Portfolio.WebUI.Server/Portfolio.WebUI.Server.csproj
@@ -7,6 +7,7 @@
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive