diff --git a/index.html b/index.html
index f95fe53..accffc0 100644
--- a/index.html
+++ b/index.html
@@ -61,6 +61,11 @@
+
+
+ Wald 1 von 1
+
+
diff --git a/src/styles/main.css b/src/styles/main.css
index b7d99df..2105d14 100644
--- a/src/styles/main.css
+++ b/src/styles/main.css
@@ -529,6 +529,49 @@ h3 {
}
}
+/* Forest navigation (multi-wald pagination) */
+.forest__nav {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 1.5rem;
+ margin: 1rem 0;
+}
+
+.forest__nav-btn {
+ min-width: 44px;
+ min-height: 44px;
+ border: 2px solid var(--accent-green);
+ border-radius: 50%;
+ background: var(--bg-cream);
+ color: var(--accent-green);
+ font-size: 1.4rem;
+ font-family: "Quicksand", sans-serif;
+ font-weight: 700;
+ cursor: pointer;
+ transition: background 0.2s, transform 0.2s;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.forest__nav-btn:hover:not(:disabled) {
+ background: var(--bg-forest);
+ transform: scale(1.1);
+}
+
+.forest__nav-btn:disabled {
+ opacity: 0.3;
+ cursor: default;
+}
+
+.forest__nav-text {
+ font-family: "Quicksand", sans-serif;
+ font-size: 1.1rem;
+ font-weight: 600;
+ color: var(--text-warm);
+}
+
/* Reward Screen */
.reward {
display: flex;