diff --git a/FilterCair.Client/Layout/MainLayout.razor b/FilterCair.Client/Layout/MainLayout.razor
index 72c4c90..f404a43 100644
--- a/FilterCair.Client/Layout/MainLayout.razor
+++ b/FilterCair.Client/Layout/MainLayout.razor
@@ -1,22 +1,67 @@
@inherits LayoutComponentBase
-
-FilterCair
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
-
- @Body
+
+
+
+
+
+
+ @Body
+
-
+
+
diff --git a/FilterCair.Client/wwwroot/css/app.css b/FilterCair.Client/wwwroot/css/app.css
index 6d37391..9153784 100644
--- a/FilterCair.Client/wwwroot/css/app.css
+++ b/FilterCair.Client/wwwroot/css/app.css
@@ -115,4 +115,54 @@ code {
.freudenberg-blue {
color: #005B99 !important;
-}
\ No newline at end of file
+}
+
+
+
+/* Freudenberg Corporate Blau */
+:root {
+ --freudenberg-blue: #005B99;
+ --freudenberg-blue-light: #1976ba;
+}
+
+/* Navbar-Design */
+.main-nav {
+ background-color: var(--freudenberg-blue) !important;
+}
+
+.navbar .nav-link {
+ color: rgba(255,255,255,0.8) !important;
+ transition: 0.2s;
+}
+
+ .navbar .nav-link:hover,
+ .navbar .nav-link.active {
+ color: #fff !important;
+ font-weight: 600;
+ border-bottom: 2px solid white;
+ }
+
+/* Footer */
+.footer {
+ background-color: #f8f9fa;
+}
+
+/* Buttons */
+.btn-primary {
+ background-color: var(--freudenberg-blue);
+ border-color: var(--freudenberg-blue);
+}
+
+ .btn-primary:hover {
+ background-color: var(--freudenberg-blue-light);
+ border-color: var(--freudenberg-blue-light);
+ }
+
+/* Progress Spinner / Accent Colors */
+.text-primary {
+ color: var(--freudenberg-blue) !important;
+}
+
+.bg-primary {
+ background-color: var(--freudenberg-blue) !important;
+}