/* Wartungsanzeige Styles */
.wartungsanzeige-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wartungsanzeige-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}

.wartungsanzeige-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wartungsanzeige-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.wartungsanzeige-titel {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 300;
    letter-spacing: -1px;
}

.wartungsanzeige-nachricht {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wartungsanzeige-zeit {
    background: rgba(103, 126, 234, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid #667eea;
}

.wartungsanzeige-zeit p {
    margin: 5px 0;
    color: #333;
}

.wartungsanzeige-zeit strong {
    color: #667eea;
    font-weight: 600;
}

.wartungsanzeige-datum {
    font-size: 1.3em;
    font-weight: 500;
    color: #333 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wartungsanzeige-content {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .wartungsanzeige-titel {
        font-size: 2em;
    }
    
    .wartungsanzeige-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .wartungsanzeige-nachricht {
        font-size: 1.1em;
    }
    
    .wartungsanzeige-zeit {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .wartungsanzeige-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .wartungsanzeige-titel {
        font-size: 1.8em;
    }
    
    .wartungsanzeige-icon {
        font-size: 50px;
    }
    
    .wartungsanzeige-nachricht {
        font-size: 1em;
    }
    
    .wartungsanzeige-datum {
        font-size: 1.1em;
    }
}

/* Animation beim Laden */
.wartungsanzeige-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zusätzliche Hover-Effekte für interaktive Elemente */
.wartungsanzeige-zeit:hover {
    background: rgba(103, 126, 234, 0.15);
    transition: background 0.3s ease;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .wartungsanzeige-body {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }
    
    .wartungsanzeige-content {
        background: rgba(40, 44, 52, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .wartungsanzeige-titel {
        color: #ecf0f1;
    }
    
    .wartungsanzeige-nachricht {
        color: #bdc3c7;
    }
    
    .wartungsanzeige-zeit {
        background: rgba(52, 152, 219, 0.2);
        border-left-color: #3498db;
    }
    
    .wartungsanzeige-zeit p {
        color: #ecf0f1;
    }
    
    .wartungsanzeige-zeit strong {
        color: #3498db;
    }
    
    .wartungsanzeige-datum {
        color: #ecf0f1 !important;
    }
}
