:root {
--eneiro-blue: #3d5a80;
--eneiro-blue-dark: #2c4561;
--eneiro-blue-darker: #1e3148;
--eneiro-blue-light: #5a7a9e;
--white: #ffffff;
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-200: #e5e7eb;
--gray-400: #9ca3af;
--gray-600: #6b7280;
--gray-800: #1f2937;
--green: #22c55e;
--yellow: #f59e0b;
--red: #ef4444;
--transition: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
background: linear-gradient(165deg, #f1f5f9 0%, #e2e8f0 25%, #cbd5e1 50%, rgba(61, 90, 128, 0.15) 100%);
background-attachment: fixed;
min-height: 100%;
}

/* Mobile Fix für background-attachment: fixed (iOS/Android) */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        background-attachment: scroll;
    }
}

body {
font-family: 'Manrope', sans-serif;
background: transparent;
color: var(--gray-800);
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
}

/* Background Animation */
.bg-animation {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100vw;
height: 100vh;
z-index: -1;
overflow: hidden;
}

#datacenterCanvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.7;
}

.bg-overlay {
display: none;
}

/* Navigation */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 1.5rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.4s var(--transition), padding 0.4s var(--transition), box-shadow 0.4s var(--transition);
border-bottom: 1px solid transparent;
}

nav.scrolled {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 1rem 5%;
box-shadow: 0 4px 30px rgba(61, 90, 128, 0.08);
border-bottom: 1px solid rgba(61, 90, 128, 0.08);
}

.logo {
height: 50px;
transition: transform 0.3s var(--transition);
}

.logo:hover {
transform: scale(1.05);
}

.nav-links {
display: flex;
gap: 3rem;
list-style: none;
align-items: center;
}

.nav-links a {
text-decoration: none;
color: var(--gray-800);
font-weight: 500;
font-size: 0.95rem;
position: relative;
padding: 0.5rem 0;
transition: color 0.3s;
}

.nav-links a::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--eneiro-blue);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s var(--transition);
}

.nav-links a:hover::before {
transform: scaleX(1);
transform-origin: left;
}

.nav-links a:hover {
color: var(--eneiro-blue);
}

.nav-links a.active {
color: var(--eneiro-blue);
}

.nav-links a.active::before {
transform: scaleX(1);
}

.hamburger {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
z-index: 1001;
}

.hamburger span {
width: 30px;
height: 2px;
background: var(--gray-800);
transition: all 0.3s;
}

/* Main Content */
main {
padding: 10rem 5% 5rem;
max-width: 1200px;
margin: 0 auto;
flex: 1;
width: 100%;
min-height: 100vh;
}

/* Page Header */
.page-header {
text-align: center;
margin-bottom: 3rem;
}

.page-header h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(2.5rem, 6vw, 3.5rem);
font-weight: 700;
margin-bottom: 1rem;
color: var(--gray-800);
}

.page-header h1 .highlight {
background: linear-gradient(135deg, var(--eneiro-blue), var(--eneiro-blue-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Overall Status Banner */
.status-banner {
background: var(--white);
border-radius: 20px;
padding: 2.5rem 3rem;
margin-bottom: 2rem;
display: flex;
align-items: center;
gap: 2rem;
box-shadow: 0 4px 20px rgba(61, 90, 128, 0.08);
border: 1px solid rgba(61, 90, 128, 0.08);
}

.status-icon {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
color: white;
flex-shrink: 0;
}

.status-icon.operational { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
.status-icon.degraded { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
.status-icon.down { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
.status-icon.unknown { background: linear-gradient(135deg, #6b7280, #4b5563); }
.status-icon.maintenance { background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); }
.status-icon.unavailable { background: linear-gradient(135deg, #94a3b8, #64748b); box-shadow: 0 4px 15px rgba(148, 163, 184, 0.3); }

/* Unavailable Notice */
.unavailable-notice {
background: linear-gradient(135deg, rgba(148, 163, 184, 0.2), rgba(100, 116, 139, 0.15));
border: 1px solid rgba(148, 163, 184, 0.4);
border-radius: 16px;
padding: 1.5rem;
margin-bottom: 2rem;
display: flex;
align-items: flex-start;
gap: 1rem;
backdrop-filter: blur(10px);
}

.unavailable-notice-icon {
font-size: 1.5rem;
flex-shrink: 0;
width: 40px;
height: 40px;
background: linear-gradient(135deg, #94a3b8, #64748b);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
}

.unavailable-notice-content {
flex: 1;
}

.unavailable-notice-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.1rem;
font-weight: 600;
color: var(--gray-800);
margin-bottom: 0.5rem;
}

.unavailable-notice-description {
color: var(--gray-600);
font-size: 0.9rem;
line-height: 1.6;
}

/* Maintenance Notices */
.maintenance-notices {
margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   MAINTENANCE NOTICES - UNIQUE DESIGN
   ═══════════════════════════════════════════════════════════════ */

.maintenance-notice {
--maintenance-color-1: #8b5cf6;
--maintenance-color-2: #7c3aed;
--maintenance-glow: rgba(139, 92, 246, 0.35);
border-radius: 20px;
padding: 0;
margin-bottom: 1.5rem;
background: rgba(255, 255, 255, 0.98);
box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
overflow: hidden;
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maintenance-notice:hover {
transform: translateY(-2px);
box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.maintenance-notice-inner {
padding: 1.75rem;
}

.maintenance-notice-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
margin-bottom: 1rem;
}

.maintenance-notice-badge {
font-size: 0.7rem;
font-weight: 700;
padding: 0.4rem 1rem;
border-radius: 30px;
text-transform: uppercase;
letter-spacing: 1px;
color: white;
background: linear-gradient(135deg, var(--maintenance-color-1), var(--maintenance-color-2));
box-shadow: 
    0 4px 15px var(--maintenance-glow),
    0 2px 4px rgba(0, 0, 0, 0.1);
position: relative;
flex-shrink: 0;
order: 2;
}

.maintenance-notice-badge::before {
content: '';
position: absolute;
inset: -3px;
border-radius: 35px;
background: linear-gradient(135deg, var(--maintenance-color-1), var(--maintenance-color-2));
opacity: 0.4;
z-index: -1;
animation: badgePulse 2s ease-in-out infinite;
}

.maintenance-notice-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: #1a1a2e;
line-height: 1.3;
order: 1;
flex: 1;
}

.maintenance-notice-description {
color: #4a5568;
font-size: 1.05rem;
line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   INCIDENT NOTICES - UNIQUE DESIGN
   ═══════════════════════════════════════════════════════════════ */

.incident-notice {
border-radius: 20px;
padding: 0;
margin-bottom: 1.5rem;
background: rgba(255, 255, 255, 0.98);
box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
overflow: hidden;
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.incident-notice:hover {
transform: translateY(-2px);
box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Innerer Container */
.incident-notice-inner {
padding: 1.75rem;
}

/* Header mit Badge */
.incident-notice-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
margin-bottom: 1rem;
}

/* Badge - Schwebend mit Glow */
.incident-notice-badge {
font-size: 0.7rem;
font-weight: 700;
padding: 0.4rem 1rem;
border-radius: 30px;
text-transform: uppercase;
letter-spacing: 1px;
color: white;
background: linear-gradient(135deg, var(--incident-color-1), var(--incident-color-2));
box-shadow: 
    0 4px 15px var(--incident-glow),
    0 2px 4px rgba(0, 0, 0, 0.1);
position: relative;
flex-shrink: 0;
order: 2;
}

/* Pulsierender Ring um Badge */
.incident-notice-badge::before {
content: '';
position: absolute;
inset: -3px;
border-radius: 35px;
background: linear-gradient(135deg, var(--incident-color-1), var(--incident-color-2));
opacity: 0.4;
z-index: -1;
animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
0%, 100% { transform: scale(1); opacity: 0.4; }
50% { transform: scale(1.1); opacity: 0.2; }
}

/* Titel */
.incident-notice-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: #1a1a2e;
line-height: 1.3;
order: 1;
flex: 1;
}

/* Beschreibung */
.incident-notice-description {
color: #4a5568;
font-size: 1.05rem;
line-height: 1.7;
}

/* Trennlinie für Updates in Notices */
.incident-divider,
.notice-divider {
border: none;
height: 1px;
background: #94a3b8;
margin: 1.25rem 0;
display: block;
}

/* ═══════════════════════════════════════════════════════════════
   INCIDENT STYLE VARIANTS
   ═══════════════════════════════════════════════════════════════ */

/* INFO - Blau */
.incident-notice.style-info {
--incident-color-1: #3b82f6;
--incident-color-2: #1d4ed8;
--incident-glow: rgba(59, 130, 246, 0.35);
}

/* WARNUNG - Orange/Amber */
.incident-notice.style-warning {
--incident-color-1: #f59e0b;
--incident-color-2: #d97706;
--incident-glow: rgba(245, 158, 11, 0.35);
}

/* STÖRUNG - Rot */
.incident-notice.style-danger {
--incident-color-1: #ef4444;
--incident-color-2: #dc2626;
--incident-glow: rgba(239, 68, 68, 0.35);
}

/* PRIMARY - Lila */
.incident-notice.style-primary {
--incident-color-1: #8b5cf6;
--incident-color-2: #7c3aed;
--incident-glow: rgba(139, 92, 246, 0.35);
}

.status-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 0.25rem;
color: var(--gray-800);
}

.status-info p {
color: var(--gray-600);
font-size: 1rem;
}

/* Service Groups */
.service-group {
background: var(--white);
border-radius: 20px;
padding: 0;
margin-bottom: 1.5rem;
box-shadow: 0 4px 20px rgba(61, 90, 128, 0.05);
border: 1px solid rgba(61, 90, 128, 0.08);
overflow: hidden;
}

.group-header {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.75rem 2rem;
cursor: pointer;
transition: background 0.3s var(--transition);
user-select: none;
}

.group-header:hover {
background: rgba(61, 90, 128, 0.03);
}

.group-header h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.35rem;
font-weight: 600;
color: var(--gray-800);
flex: 1;
}

.group-status {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 50px;
}

.group-status.operational {
background: rgba(34, 197, 94, 0.1);
color: #16a34a;
}

.group-status.degraded {
background: rgba(245, 158, 11, 0.1);
color: #d97706;
}

.group-status.down {
background: rgba(239, 68, 68, 0.1);
color: #dc2626;
}

.group-status.maintenance {
background: rgba(99, 102, 241, 0.1);
color: #6366f1;
}

.group-toggle {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
background: rgba(61, 90, 128, 0.08);
transition: all 0.3s var(--transition);
}

.group-toggle svg {
width: 20px;
height: 20px;
color: var(--gray-500);
transition: transform 0.3s ease-in-out;
}

.service-group.open .group-toggle svg {
transform: rotate(180deg);
}

.group-header:hover .group-toggle {
background: rgba(61, 90, 128, 0.12);
}

.group-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--eneiro-blue), var(--eneiro-blue-dark));
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
}

/* Service Items */
.service-list {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 0.3s ease-in-out;
}

.service-group.open .service-list {
grid-template-rows: 1fr;
}

.service-list-inner {
min-height: 0;
overflow: hidden;
display: flex;
flex-direction: column;
gap: 0.75rem;
padding: 0 2rem;
transition: padding 0.3s ease-in-out;
}

.service-group.open .service-list-inner {
padding: 1.5rem 2rem 2rem 2rem;
}

.service-list-divider {
height: 0;
background: rgba(61, 90, 128, 0.1);
margin: 0 2rem;
opacity: 0;
transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.service-group.open .service-list-divider {
height: 1px;
opacity: 1;
}

.service-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.25rem 1.5rem;
background: var(--gray-50);
border-radius: 12px;
transition: all 0.3s var(--transition);
}

.service-item:hover {
background: var(--gray-100);
}

.service-info {
display: flex;
flex-direction: column;
gap: 0.25rem;
}

.service-name {
font-weight: 500;
font-size: 1.05rem;
color: var(--gray-800);
}

.service-uptime {
font-size: 0.85rem;
color: var(--gray-400);
}

.service-status {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 50px;
}

.service-status.operational {
background: rgba(34, 197, 94, 0.1);
color: #16a34a;
}

.service-status.degraded {
background: rgba(245, 158, 11, 0.1);
color: #d97706;
}

.service-status.down {
background: rgba(239, 68, 68, 0.1);
color: #dc2626;
}

.service-status.maintenance {
background: rgba(107, 114, 128, 0.1);
color: #4b5563;
}

.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
}

.status-dot.operational { background: #22c55e; }
.status-dot.degraded { background: #f59e0b; }
.status-dot.down { background: #ef4444; }
.status-dot.maintenance { background: #6b7280; }

/* Uptime Bar */
.uptime-info {
margin-top: 0.5rem;
display: flex;
align-items: center;
gap: 1rem;
}

.uptime-bar {
display: flex;
gap: 2px;
height: 24px;
}

.uptime-segment {
width: 4px;
border-radius: 2px;
background: var(--gray-200);
}

.uptime-segment.up { background: #22c55e; }
.uptime-segment.down { background: #ef4444; }
.uptime-segment.degraded { background: #f59e0b; }

.uptime-percent {
font-size: 0.85rem;
color: var(--gray-600);
font-weight: 500;
}

/* Last Updated */
.last-updated {
text-align: center;
padding: 2rem;
color: var(--gray-600);
font-size: 0.85rem;
}

.last-updated span {
color: var(--eneiro-blue);
font-weight: 600;
}

/* No Data Message */
.no-data {
text-align: center;
padding: 4rem 2rem;
background: var(--white);
border-radius: 20px;
box-shadow: 0 4px 20px rgba(61, 90, 128, 0.05);
}

.no-data-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.no-data h3 {
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 0.5rem;
color: var(--gray-800);
}

.no-data p {
color: var(--gray-600);
}

/* Footer */
footer {
padding: 3rem 5%;
position: relative;
background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
margin-top: auto;
flex-shrink: 0;
}

footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(61, 90, 128, 0.2), transparent);
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 2rem;
}

.footer-logo {
height: 40px;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 2rem;
list-style: none;
}

.footer-links a {
color: var(--gray-600);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--eneiro-blue);
}

.footer-bottom {
max-width: 1400px;
margin: 3rem auto 0;
padding-top: 2rem;
border-top: 1px solid rgba(61, 90, 128, 0.1);
text-align: center;
color: var(--gray-600);
font-size: 0.85rem;
}

/* Mobile Styles */
@media (max-width: 900px) {
/* Mobile Background Fix */
html {
    background-attachment: scroll;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s var(--transition);
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 1.5rem;
    color: var(--gray-800);
}

.hamburger {
    display: flex;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

main {
    padding: 7rem 3% 2rem;
}

.page-header h1 {
    font-size: 1.75rem;
}

.page-header p {
    font-size: 0.9rem;
}

/* Status-Banner mobil */
.status-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 0.75rem;
    border-radius: 16px;
}

.status-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.status-info h2 {
    font-size: 1.2rem;
}

.status-info p {
    font-size: 0.8rem;
}

/* Gruppen mobil */
.service-group {
    border-radius: 16px;
    margin-bottom: 1rem;
}

.group-header {
    padding: 1rem 0.875rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.group-icon {
    display: none;
}

.group-header h3 {
    font-size: 1rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.group-status {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.group-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.group-toggle svg {
    width: 14px;
    height: 14px;
}

/* Service-Liste mobil */
.service-list-inner {
    padding: 0 0.875rem;
    gap: 0.5rem;
}

.service-group.open .service-list-inner {
    padding: 0.875rem 0.875rem 1.25rem 0.875rem;
}

.service-list-divider {
    margin: 0 0.875rem;
}

.service-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.875rem;
    border-radius: 10px;
}

.service-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.service-name {
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-uptime {
    font-size: 0.7rem;
}

.service-status {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    flex-shrink: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
}

/* Info-Boxen mobil */
.maintenance-notices,
.incident-notices {
    margin-bottom: 1rem;
}

.maintenance-notice,
.incident-notice {
    border-radius: 16px;
    margin-bottom: 1rem;
}

.maintenance-notice-inner,
.incident-notice-inner {
    padding: 1.25rem;
}

.maintenance-notice-title,
.incident-notice-title {
    font-size: 1.15rem;
}

.maintenance-notice-description,
.incident-notice-description {
    font-size: 0.95rem;
}

.maintenance-notice-badge,
.incident-notice-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.75rem;
}

.maintenance-notice-header,
.incident-notice-header {
    gap: 0.75rem;
    flex-wrap: nowrap;
}

/* Footer mobil */
.footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.footer-links a {
    font-size: 0.85rem;
}

.footer-bottom p {
    font-size: 0.75rem;
}

.last-updated {
    font-size: 0.75rem;
    padding: 1rem;
}

/* Canvas auf Tablets/Mobil ausblenden */
#datacenterCanvas {
    opacity: 0.4;
}
}

@media (max-width: 480px) {
main {
    padding: 6.5rem 3% 1.5rem;
}

.page-header {
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 1.5rem;
}

.status-banner {
    padding: 1rem;
}

.status-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

.status-info h2 {
    font-size: 1.1rem;
}

.group-header {
    padding: 0.875rem 0.75rem;
}

.group-header h3 {
    font-size: 0.9rem;
}

.group-status {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
}

.group-toggle {
    width: 26px;
    height: 26px;
}

.service-item {
    padding: 0.75rem;
}

.service-name {
    font-size: 0.8rem;
}

.service-status {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
}

/* Canvas auf kleinen Handys komplett ausblenden */
#datacenterCanvas {
    display: none;
}
}

/* Auto-refresh Animation */
@keyframes pulse-refresh {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.refreshing {
animation: pulse-refresh 1s infinite;
}

/* Monitor-Logo (für status-monitor.php) */
.monitor-logo {
    position: fixed;
    top: 1.5rem;
    left: 5%;
    z-index: 1000;
}

.monitor-logo img {
    height: 45px;
    opacity: 0.9;
}
