/* Error Pages Styling */
.error-page {
    background-color: #f8f9fa;
}

.error-container {
    padding: 80px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.error-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.error-icon .fa-lock {
    color: #e74c3c;
}

.error-icon .fa-exclamation-triangle {
    color: #f39c12;
}

.error-icon .fa-search {
    color: #3498db;
}

.error-icon .fa-cogs {
    color: #7f8c8d;
}

.error-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin: 10px 0 20px;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.error-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.error-actions .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.error-actions .btn-primary {
    background-color: #ff5e62;
    color: white;
    border: none;
}

.error-actions .btn-primary:hover {
    background-color: #e74c3c;
    transform: translateY(-2px);
}

.error-actions .btn-outline {
    background-color: transparent;
    color: #ff5e62;
    border: 2px solid #ff5e62;
}

.error-actions .btn-outline:hover {
    background-color: #ff5e62;
    color: white;
    transform: translateY(-2px);
}

/* Animation für die Fehlerseite */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.error-content {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .error-container {
        padding: 40px 20px;
    }
    
    .error-content {
        padding: 30px 20px;
    }
    
    .error-code {
        font-size: 100px;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
