🎉 Improved backend structure & logs organization 🎉

This commit is contained in:
2025-06-01 03:25:55 +02:00
parent 8969cf6df6
commit 09462724e0
63 changed files with 2014 additions and 491 deletions

View File

@ -2,163 +2,344 @@
/* Base Glass Effects */
.glass-base {
backdrop-filter: blur(20px) saturate(180%) brightness(110%);
-webkit-backdrop-filter: blur(20px) saturate(180%) brightness(110%);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
backdrop-filter: blur(24px) saturate(200%) brightness(115%);
-webkit-backdrop-filter: blur(24px) saturate(200%) brightness(115%);
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.12),
0 8px 16px rgba(0, 0, 0, 0.08),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-strong {
backdrop-filter: blur(24px) saturate(200%) brightness(120%);
-webkit-backdrop-filter: blur(24px) saturate(200%) brightness(120%);
box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
backdrop-filter: blur(28px) saturate(220%) brightness(125%);
-webkit-backdrop-filter: blur(28px) saturate(220%) brightness(125%);
box-shadow:
0 35px 70px rgba(0, 0, 0, 0.15),
0 12px 24px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.glass-subtle {
backdrop-filter: blur(16px) saturate(150%) brightness(105%);
-webkit-backdrop-filter: blur(16px) saturate(150%) brightness(105%);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px) saturate(180%) brightness(110%);
-webkit-backdrop-filter: blur(20px) saturate(180%) brightness(110%);
box-shadow:
0 15px 35px rgba(0, 0, 0, 0.08),
0 4px 8px rgba(0, 0, 0, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
/* Light Mode Glass */
.glass-light {
background: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.85);
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.1),
0 8px 16px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.glass-light-strong {
background: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.75);
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.12),
0 10px 20px rgba(0, 115, 206, 0.08),
inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
/* Light Mode Glass Premium */
.glass-light-premium {
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.9) 0%,
rgba(248, 250, 252, 0.8) 50%,
rgba(255, 255, 255, 0.85) 100%);
border: 1px solid rgba(226, 232, 240, 0.6);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.08),
0 10px 20px rgba(0, 115, 206, 0.06),
inset 0 2px 0 rgba(255, 255, 255, 0.8),
inset 0 0 20px rgba(255, 255, 255, 0.3);
}
.glass-light-card {
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.95) 0%,
rgba(250, 251, 252, 0.9) 100%);
border: 1px solid rgba(226, 232, 240, 0.4);
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.06),
0 8px 16px rgba(0, 115, 206, 0.04),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
/* Dark Mode Glass */
.glass-dark {
background: rgba(0, 0, 0, 0.7);
background: rgba(15, 23, 42, 0.8);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.4),
0 8px 16px rgba(0, 0, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.glass-dark-strong {
background: rgba(0, 0, 0, 0.8);
background: rgba(30, 41, 59, 0.85);
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
box-shadow:
0 35px 70px rgba(0, 0, 0, 0.5),
0 12px 24px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* Interactive Glass Elements */
.glass-interactive {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
position: relative;
overflow: hidden;
}
.glass-interactive::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent);
transition: left 0.6s ease;
z-index: 1;
}
.glass-interactive:hover {
transform: translateY(-2px);
backdrop-filter: blur(28px) saturate(220%) brightness(125%);
-webkit-backdrop-filter: blur(28px) saturate(220%) brightness(125%);
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
transform: translateY(-3px) scale(1.01);
backdrop-filter: blur(32px) saturate(240%) brightness(130%);
-webkit-backdrop-filter: blur(32px) saturate(240%) brightness(130%);
box-shadow:
0 40px 80px rgba(0, 0, 0, 0.15),
0 16px 32px rgba(0, 115, 206, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.glass-interactive:hover::before {
left: 100%;
}
.glass-interactive:active {
transform: translateY(-1px) scale(0.99);
transition: transform 0.1s ease;
}
/* Glass Navigation */
.glass-nav {
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(24px) saturate(200%) brightness(120%);
-webkit-backdrop-filter: blur(24px) saturate(200%) brightness(120%);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.9) 0%,
rgba(248, 250, 252, 0.85) 50%,
rgba(255, 255, 255, 0.9) 100%);
backdrop-filter: blur(24px) saturate(200%) brightness(115%);
-webkit-backdrop-filter: blur(24px) saturate(200%) brightness(115%);
border: 1px solid rgba(226, 232, 240, 0.5);
border-bottom: 1px solid rgba(203, 213, 225, 0.6);
box-shadow:
0 8px 32px rgba(0, 0, 0, 0.08),
0 4px 12px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.dark .glass-nav {
background: rgba(0, 0, 0, 0.5);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
background: rgba(15, 23, 42, 0.85);
border-color: rgba(51, 65, 85, 0.6);
border-bottom-color: rgba(71, 85, 105, 0.7);
box-shadow:
0 8px 32px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Glass Cards */
.glass-card-enhanced {
background: rgba(255, 255, 255, 0.7);
.glass-card {
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.95) 0%,
rgba(250, 251, 252, 0.9) 100%);
backdrop-filter: blur(20px) saturate(180%) brightness(110%);
-webkit-backdrop-filter: blur(20px) saturate(180%) brightness(110%);
border: 1px solid rgba(255, 255, 255, 0.2);
border: 1px solid rgba(229, 231, 235, 0.6);
border-radius: 16px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.08),
0 8px 16px rgba(0, 115, 206, 0.04),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
padding: 1.5rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.dark .glass-card-enhanced {
background: rgba(0, 0, 0, 0.7);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
.glass-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg,
transparent 0%,
rgba(226, 232, 240, 0.8) 50%,
transparent 100%);
}
.glass-card-enhanced:hover {
transform: translateY(-4px);
box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
.glass-card:hover {
transform: translateY(-2px);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.12),
0 12px 24px rgba(0, 115, 206, 0.08),
inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.dark .glass-card-enhanced:hover {
box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
.dark .glass-card {
background: rgba(30, 41, 59, 0.85);
border-color: rgba(100, 116, 139, 0.4);
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.dark .glass-card:hover {
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
/* Glass Buttons */
.glass-btn {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(16px) saturate(150%) brightness(110%);
-webkit-backdrop-filter: blur(16px) saturate(150%) brightness(110%);
border: 1px solid rgba(255, 255, 255, 0.3);
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.9) 0%,
rgba(248, 250, 252, 0.8) 100%);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(226, 232, 240, 0.6);
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
padding: 0.75rem 1.5rem;
color: #0f172a;
font-weight: 600;
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
box-shadow:
0 4px 12px rgba(0, 0, 0, 0.08),
0 2px 4px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
transition: all 0.2s ease;
}
.dark .glass-btn {
background: rgba(0, 0, 0, 0.8);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.glass-btn:hover {
transform: translateY(-1px);
backdrop-filter: blur(20px) saturate(170%) brightness(115%);
-webkit-backdrop-filter: blur(20px) saturate(170%) brightness(115%);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.95) 0%,
rgba(248, 250, 252, 0.85) 100%);
box-shadow:
0 8px 20px rgba(0, 0, 0, 0.12),
0 4px 8px rgba(0, 115, 206, 0.08),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.glass-btn:active {
transform: translateY(0);
box-shadow:
0 2px 8px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.glass-btn-primary {
background: linear-gradient(135deg,
rgba(0, 115, 206, 0.9) 0%,
rgba(0, 90, 159, 0.85) 100%);
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
box-shadow:
0 4px 12px rgba(0, 115, 206, 0.3),
0 2px 4px rgba(0, 115, 206, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.glass-btn-primary:hover {
background: linear-gradient(135deg,
rgba(0, 115, 206, 0.95) 0%,
rgba(0, 90, 159, 0.9) 100%);
box-shadow:
0 8px 20px rgba(0, 115, 206, 0.4),
0 4px 8px rgba(0, 115, 206, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.dark .glass-btn {
background: rgba(30, 41, 59, 0.8);
color: #e2e8f0;
border-color: rgba(100, 116, 139, 0.6);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
box-shadow:
0 4px 12px rgba(0, 0, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Glass Modals */
.glass-modal {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(32px) saturate(200%) brightness(115%);
-webkit-backdrop-filter: blur(32px) saturate(200%) brightness(115%);
border: 1px solid rgba(255, 255, 255, 0.3);
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.98) 0%,
rgba(248, 250, 252, 0.95) 50%,
rgba(255, 255, 255, 0.98) 100%);
backdrop-filter: blur(32px) saturate(220%) brightness(120%);
-webkit-backdrop-filter: blur(32px) saturate(220%) brightness(120%);
border: 1px solid rgba(226, 232, 240, 0.7);
border-radius: 20px;
box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
box-shadow:
0 50px 100px rgba(0, 0, 0, 0.15),
0 20px 40px rgba(0, 115, 206, 0.08),
inset 0 2px 0 rgba(255, 255, 255, 0.9),
inset 0 0 40px rgba(255, 255, 255, 0.2);
}
.dark .glass-modal {
background: rgba(0, 0, 0, 0.85);
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
background: rgba(15, 23, 42, 0.95);
border-color: rgba(51, 65, 85, 0.7);
box-shadow:
0 50px 100px rgba(0, 0, 0, 0.5),
inset 0 2px 0 rgba(255, 255, 255, 0.1);
}
/* Glass Form Elements */
.glass-input {
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(16px) saturate(150%);
-webkit-backdrop-filter: blur(16px) saturate(150%);
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(226, 232, 240, 0.6);
border-radius: 8px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
padding: 0.75rem 1rem;
color: #0f172a;
box-shadow:
0 2px 8px rgba(0, 0, 0, 0.06),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
transition: all 0.2s ease;
}
.dark .glass-input {
background: rgba(0, 0, 0, 0.6);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
.glass-input:focus {
outline: none;
border-color: rgba(0, 115, 206, 0.6);
box-shadow:
0 4px 12px rgba(0, 115, 206, 0.15),
0 0 0 3px rgba(0, 115, 206, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.glass-input:focus {
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(59, 130, 246, 0.5);
.dark .glass-input {
background: rgba(30, 41, 59, 0.8);
border-color: rgba(100, 116, 139, 0.6);
color: #e2e8f0;
box-shadow:
0 2px 8px rgba(0, 0, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Glass Dropdown */
@ -204,11 +385,13 @@
/* Responsive glass effects */
@media (max-width: 768px) {
.glass-base,
.glass-strong,
.glass-card-enhanced {
backdrop-filter: blur(16px) saturate(150%);
-webkit-backdrop-filter: blur(16px) saturate(150%);
.glass-card {
padding: 1rem;
border-radius: 12px;
}
.glass-modal {
border-radius: 16px;
}
}
@ -216,7 +399,7 @@
@media (prefers-contrast: high) {
.glass-base,
.glass-strong,
.glass-card-enhanced {
.glass-card {
border-width: 2px;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
@ -226,12 +409,77 @@
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.glass-interactive,
.glass-card-enhanced,
.glass-btn {
transition: none;
.glass-btn,
.glass-card {
transition: none !important;
}
.glass-float {
animation: none;
.glass-interactive::before {
display: none;
}
}
/* Glass Loading States */
.glass-loading {
position: relative;
overflow: hidden;
}
.glass-loading::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgba(255, 255, 255, 0.3),
transparent);
animation: glass-shimmer 2s infinite;
}
.dark .glass-loading::after {
background: linear-gradient(90deg,
transparent,
rgba(255, 255, 255, 0.1),
transparent);
}
@keyframes glass-shimmer {
0% { left: -100%; }
100% { left: 100%; }
}
/* Premium Glow Effects for Light Mode */
.glass-glow {
position: relative;
}
.glass-glow::after {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg,
rgba(0, 115, 206, 0.1),
rgba(0, 90, 159, 0.05),
rgba(0, 115, 206, 0.1));
border-radius: inherit;
z-index: -1;
opacity: 0;
transition: opacity 0.3s ease;
}
.glass-glow:hover::after {
opacity: 1;
}
.dark .glass-glow::after {
background: linear-gradient(45deg,
rgba(59, 130, 246, 0.2),
rgba(29, 78, 216, 0.1),
rgba(59, 130, 246, 0.2));
}

View File

@ -1,31 +1,44 @@
/**
* Mercedes-Benz MYP Platform - Professional Theme
* Professionelle Light/Dark Mode Implementierung
* Mercedes-Benz MYP Platform - Erweiterte Professional Theme
* Verbesserte Light/Dark Mode Implementierung mit optimierten Kontrasten
*/
/* Globale CSS-Variablen für konsistente Theming */
:root {
/* Mercedes-Benz Markenfarben */
--mb-primary: #3b82f6;
--mb-primary-dark: #1d4ed8;
/* Mercedes-Benz Markenfarben - Erweitert */
--mb-primary: #0073ce;
--mb-primary-dark: #005a9f;
--mb-secondary: #64748b;
--mb-accent: #0ea5e9;
--mb-black: #000000;
--mb-silver: #c0c0c0;
/* Light Mode Farbpalette */
/* Light Mode Farbpalette - Verbessert */
--light-bg-primary: #ffffff;
--light-bg-secondary: #f8fafc;
--light-bg-tertiary: #f1f5f9;
--light-bg-accent: #fafbfc;
--light-surface: #ffffff;
--light-surface-hover: #f8fafc;
--light-surface-active: #f1f5f9;
--light-text-primary: #0f172a;
--light-text-secondary: #475569;
--light-text-muted: #64748b;
--light-text-accent: #0073ce;
--light-border: #e2e8f0;
--light-border-strong: #cbd5e1;
--light-shadow: rgba(0, 0, 0, 0.1);
--light-shadow-strong: rgba(0, 0, 0, 0.15);
--light-border-accent: #0073ce20;
--light-shadow: rgba(0, 0, 0, 0.08);
--light-shadow-strong: rgba(0, 0, 0, 0.12);
--light-shadow-accent: rgba(0, 115, 206, 0.15);
/* Dark Mode Farbpalette */
/* Neue Light Mode Gradients */
--light-gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
--light-gradient-card: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
--light-gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
--light-gradient-accent: linear-gradient(135deg, #0073ce 0%, #005a9f 100%);
/* Dark Mode Farbpalette - Unverändert */
--dark-bg-primary: #0f172a;
--dark-bg-secondary: #1e293b;
--dark-bg-tertiary: #334155;
@ -40,16 +53,28 @@
--dark-shadow-strong: rgba(0, 0, 0, 0.5);
}
/* Professionelle Hero-Header Stile */
/* Professionelle Hero-Header Stile - Verbessert */
.professional-hero {
position: relative;
overflow: hidden;
border-radius: 2rem;
margin: 1.5rem;
margin-bottom: 2rem;
background: linear-gradient(135deg, var(--light-bg-secondary) 0%, var(--light-bg-tertiary) 100%);
background: var(--light-gradient-hero);
border: 1px solid var(--light-border);
box-shadow: 0 20px 40px var(--light-shadow);
box-shadow:
0 20px 40px var(--light-shadow),
0 8px 16px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
transition: all 0.3s ease;
}
.professional-hero:hover {
transform: translateY(-2px);
box-shadow:
0 25px 50px var(--light-shadow-strong),
0 12px 24px var(--light-shadow-accent),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.dark .professional-hero {
@ -139,19 +164,21 @@
/* Professional Buttons */
.btn-professional {
background: linear-gradient(135deg, var(--mb-primary) 0%, var(--mb-primary-dark) 100%);
background: var(--light-gradient-accent);
color: white;
border: none;
border-radius: 1rem;
padding: 0.75rem 2rem;
border-radius: 0.5rem;
padding: 0.75rem 1.5rem;
font-weight: 600;
font-size: 0.875rem;
letter-spacing: 0.025em;
text-transform: uppercase;
transition: all 0.3s ease;
letter-spacing: 0.025em;
transition: all 0.2s ease;
box-shadow:
0 2px 8px rgba(0, 115, 206, 0.25),
0 1px 3px rgba(0, 115, 206, 0.1);
position: relative;
overflow: hidden;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-professional::before {
@ -162,19 +189,20 @@
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
transition: left 0.5s ease;
}
.btn-professional:hover {
transform: translateY(-2px);
box-shadow:
0 4px 15px rgba(0, 115, 206, 0.35),
0 2px 8px rgba(0, 115, 206, 0.2);
}
.btn-professional:hover::before {
left: 100%;
}
.btn-professional:hover {
background: linear-gradient(135deg, var(--mb-primary-dark) 0%, #1e40af 100%);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.btn-professional:active {
transform: translateY(0);
}
@ -246,45 +274,47 @@
/* Professional Cards */
.card-professional {
background: var(--light-surface);
background: var(--light-gradient-card);
border: 1px solid var(--light-border);
border-radius: 1.25rem;
border-radius: 1rem;
padding: 1.5rem;
box-shadow: 0 4px 20px var(--light-shadow);
box-shadow:
0 4px 15px var(--light-shadow),
0 2px 8px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.6);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.dark .card-professional {
background: var(--dark-surface);
border-color: var(--dark-border);
box-shadow: 0 4px 20px var(--dark-shadow);
}
.card-professional::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--mb-primary), var(--mb-accent));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.card-professional:hover::before {
transform: scaleX(1);
right: 0;
height: 2px;
background: var(--light-gradient-accent);
opacity: 0;
transition: opacity 0.3s ease;
}
.card-professional:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px var(--light-shadow-strong);
box-shadow:
0 8px 25px var(--light-shadow-strong),
0 4px 12px var(--light-shadow-accent),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.dark .card-professional:hover {
box-shadow: 0 12px 40px var(--dark-shadow-strong);
.card-professional:hover::before {
opacity: 1;
}
.dark .card-professional {
background: var(--dark-surface);
border-color: var(--dark-border);
box-shadow: 0 4px 15px var(--dark-shadow);
}
/* Professional Statistics Cards */
@ -358,49 +388,106 @@
transform: scale(1.05);
}
/* Status-spezifische Farben */
.status-pending {
background: rgba(251, 191, 36, 0.1);
color: #92400e;
border-color: rgba(251, 191, 36, 0.3);
}
.dark .status-pending {
background: rgba(251, 191, 36, 0.2);
color: #fbbf24;
}
.status-approved {
background: rgba(16, 185, 129, 0.1);
/* Verbesserte Status Indicators */
.status-online {
background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
color: #065f46;
border: 1px solid rgba(16, 185, 129, 0.2);
box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}
.dark .status-online {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
color: #10b981;
border-color: rgba(16, 185, 129, 0.3);
}
.status-offline {
background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
color: #991b1b;
border: 1px solid rgba(239, 68, 68, 0.2);
box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}
.dark .status-offline {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
color: #ef4444;
border-color: rgba(239, 68, 68, 0.3);
}
.status-printing {
background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
color: #1d4ed8;
border: 1px solid rgba(59, 130, 246, 0.2);
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}
.dark .status-printing {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
color: #3b82f6;
border-color: rgba(59, 130, 246, 0.3);
}
.status-maintenance {
background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
color: #6b21a8;
border: 1px solid rgba(139, 92, 246, 0.2);
box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
}
.dark .status-maintenance {
background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
color: #8b5cf6;
border-color: rgba(139, 92, 246, 0.3);
}
.status-pending {
background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
color: #92400e;
border: 1px solid rgba(251, 191, 36, 0.2);
box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1);
}
.dark .status-pending {
background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
color: #fbbf24;
border-color: rgba(251, 191, 36, 0.3);
}
.status-approved {
background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
color: #065f46;
border: 1px solid rgba(16, 185, 129, 0.3);
box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
.dark .status-approved {
background: rgba(16, 185, 129, 0.2);
background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
color: #10b981;
}
.status-denied {
background: rgba(239, 68, 68, 0.1);
background: linear-gradient(135deg, #fef2f2 0%, #fca5a5 100%);
color: #991b1b;
border-color: rgba(239, 68, 68, 0.3);
border: 1px solid rgba(239, 68, 68, 0.3);
box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}
.dark .status-denied {
background: rgba(239, 68, 68, 0.2);
background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
color: #ef4444;
}
/* Professional Typography */
.title-professional {
background: linear-gradient(135deg, var(--light-text-primary) 0%, var(--light-text-secondary) 100%);
background: linear-gradient(135deg, var(--light-text-primary) 0%, var(--light-text-accent) 50%, var(--light-text-secondary) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
letter-spacing: -0.025em;
line-height: 1.1;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dark .title-professional {
@ -415,6 +502,7 @@
font-size: 1.125rem;
line-height: 1.6;
font-weight: 400;
opacity: 0.9;
}
.dark .subtitle-professional {
@ -423,11 +511,14 @@
/* Professional Navigation */
.nav-professional {
background: var(--light-surface);
background: var(--light-gradient-card);
border: 1px solid var(--light-border);
border-radius: 1rem;
padding: 0.5rem;
box-shadow: 0 4px 15px var(--light-shadow);
box-shadow:
0 4px 15px var(--light-shadow),
0 2px 8px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.6);
backdrop-filter: blur(20px);
}
@ -448,6 +539,7 @@
font-weight: 500;
transition: all 0.2s ease;
position: relative;
background: transparent;
}
.dark .nav-item-professional {
@ -458,6 +550,7 @@
background: var(--light-surface-hover);
color: var(--light-text-primary);
transform: translateX(4px);
box-shadow: 0 2px 8px var(--light-shadow);
}
.dark .nav-item-professional:hover {
@ -466,9 +559,11 @@
}
.nav-item-professional.active {
background: rgba(59, 130, 246, 0.1);
background: linear-gradient(135deg, rgba(0, 115, 206, 0.1) 0%, rgba(0, 115, 206, 0.05) 100%);
color: var(--mb-primary);
font-weight: 600;
border: 1px solid var(--light-border-accent);
box-shadow: 0 2px 8px var(--light-shadow-accent);
}
.dark .nav-item-professional.active {
@ -479,10 +574,14 @@
.table-professional {
width: 100%;
border-collapse: collapse;
background: var(--light-surface);
background: var(--light-gradient-card);
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 4px 20px var(--light-shadow);
box-shadow:
0 4px 20px var(--light-shadow),
0 2px 8px rgba(0, 115, 206, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.6);
border: 1px solid var(--light-border);
}
.dark .table-professional {
@ -491,12 +590,23 @@
}
.table-professional th {
background: var(--light-bg-secondary);
background: linear-gradient(135deg, var(--light-bg-secondary) 0%, var(--light-bg-tertiary) 100%);
color: var(--light-text-primary);
font-weight: 600;
text-align: left;
padding: 1rem 1.5rem;
border-bottom: 1px solid var(--light-border);
position: relative;
}
.table-professional th::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, var(--light-border-strong) 50%, transparent 100%);
}
.dark .table-professional th {
@ -509,6 +619,7 @@
padding: 1rem 1.5rem;
border-bottom: 1px solid var(--light-border);
color: var(--light-text-secondary);
transition: all 0.2s ease;
}
.dark .table-professional td {
@ -518,6 +629,8 @@
.table-professional tbody tr:hover {
background: var(--light-surface-hover);
transform: scale(1.005);
box-shadow: 0 2px 8px var(--light-shadow);
}
.dark .table-professional tbody tr:hover {
@ -534,47 +647,74 @@
gap: 1rem;
margin-bottom: 1rem;
box-shadow: 0 4px 15px var(--light-shadow);
position: relative;
overflow: hidden;
}
.alert-professional::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 4px;
}
.alert-info {
background: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
border-color: rgba(59, 130, 246, 0.2);
color: #1e40af;
}
.alert-info::before {
background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}
.dark .alert-info {
background: rgba(59, 130, 246, 0.2);
color: #60a5fa;
}
.alert-success {
background: rgba(16, 185, 129, 0.1);
border-color: rgba(16, 185, 129, 0.3);
background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
border-color: rgba(16, 185, 129, 0.2);
color: #065f46;
}
.alert-success::before {
background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}
.dark .alert-success {
background: rgba(16, 185, 129, 0.2);
color: #10b981;
}
.alert-warning {
background: rgba(251, 191, 36, 0.1);
border-color: rgba(251, 191, 36, 0.3);
background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(251, 191, 36, 0.03) 100%);
border-color: rgba(251, 191, 36, 0.2);
color: #92400e;
}
.alert-warning::before {
background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
}
.dark .alert-warning {
background: rgba(251, 191, 36, 0.2);
color: #fbbf24;
}
.alert-error {
background: rgba(239, 68, 68, 0.1);
border-color: rgba(239, 68, 68, 0.3);
background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
border-color: rgba(239, 68, 68, 0.2);
color: #991b1b;
}
.alert-error::before {
background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}
.dark .alert-error {
background: rgba(239, 68, 68, 0.2);
color: #ef4444;
@ -582,8 +722,24 @@
/* Background Gradients für verschiedene Seiten */
.bg-professional {
background: linear-gradient(135deg, var(--light-bg-primary) 0%, var(--light-bg-secondary) 50%, var(--light-bg-tertiary) 100%);
background: var(--light-gradient-primary);
min-height: 100vh;
position: relative;
}
.bg-professional::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(0, 115, 206, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(0, 115, 206, 0.02) 0%, transparent 50%),
radial-gradient(circle at 40% 80%, rgba(0, 115, 206, 0.01) 0%, transparent 50%);
pointer-events: none;
z-index: -1;
}
.dark .bg-professional {
@ -593,6 +749,7 @@
/* Utilities */
.text-professional-primary {
color: var(--light-text-primary);
font-weight: 600;
}
.dark .text-professional-primary {
@ -601,6 +758,7 @@
.text-professional-secondary {
color: var(--light-text-secondary);
font-weight: 500;
}
.dark .text-professional-secondary {
@ -609,12 +767,22 @@
.text-professional-muted {
color: var(--light-text-muted);
font-weight: 400;
}
.dark .text-professional-muted {
color: var(--dark-text-muted);
}
.text-professional-accent {
color: var(--light-text-accent);
font-weight: 600;
}
.dark .text-professional-accent {
color: #60a5fa;
}
/* Censored Text for Privacy Protection */
.censored-text {
font-family: monospace;
@ -623,13 +791,18 @@
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 500;
position: relative;
}
.dark .censored-text {
background: linear-gradient(45deg, var(--dark-text-secondary), var(--dark-text-muted));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
.censored-text::after {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: currentColor;
opacity: 0.3;
}
/* Smooth transitions für alle professionellen Komponenten */
@ -660,6 +833,14 @@
padding: 1rem;
}
.nav-professional {
padding: 0.25rem;
}
.nav-item-professional {
padding: 0.5rem 0.75rem;
}
.stat-number {
font-size: 2rem;
}
@ -949,10 +1130,6 @@
}
/* Professional Accent Colors */
.text-professional-accent {
color: var(--mb-accent);
}
.bg-professional-accent {
background-color: var(--mb-accent);
}
@ -980,4 +1157,61 @@
opacity: 0.5;
transform: translate(-50%, -50%) scale(1.2);
}
}
/* Neue Premium-Komponenten */
.glass-professional {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px) saturate(180%) brightness(110%);
-webkit-backdrop-filter: blur(20px) saturate(180%) brightness(110%);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.15),
0 8px 16px rgba(0, 115, 206, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.6);
border-radius: 1rem;
}
.dark .glass-professional {
background: rgba(30, 41, 59, 0.8);
border-color: rgba(255, 255, 255, 0.1);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Enhanced Hover States für Light Mode */
.hover-lift {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
transform: translateY(-2px);
box-shadow:
0 10px 25px var(--light-shadow-strong),
0 4px 12px var(--light-shadow-accent);
}
.dark .hover-lift:hover {
box-shadow: 0 10px 25px var(--dark-shadow-strong);
}
/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
* {
transition: none !important;
animation: none !important;
}
}
/* Focus States */
.focus-professional:focus {
outline: 2px solid var(--light-text-accent);
outline-offset: 2px;
box-shadow: 0 0 0 4px rgba(0, 115, 206, 0.15);
}
.dark .focus-professional:focus {
outline-color: #60a5fa;
box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

View File

@ -0,0 +1 @@