/* Errors CSS - Styles pour les erreurs */

/* Pages d'erreur */
.error-page {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #f5f5f5;
}

.error-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

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

.error-back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.error-back-link:hover {
    background: #2980b9;
}

/* Styles pour les tests */
.test-page {
    font-family: Arial, sans-serif;
    margin: 20px;
    background: #f5f5f5;
}

.test-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.test-success {
    color: #28a745;
    background: #d4edda;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.test-error {
    color: #dc3545;
    background: #f8d7da;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.test-info {
    color: #17a2b8;
    background: #d1ecf1;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.test-code {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    overflow-x: auto;
}

.test-lang-selector a {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.test-lang-selector a:hover {
    background: #0056b3;
}

.test-lang-selector a.active {
    background: #28a745;
} 