/* Fichier de test CSS (style.css) */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
}

/* 2. Style pour le test CSS */
#css-test {
    background-color: #dff0d8; /* Vert = Succès */
    border: 1px solid #c3e6cb;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* 3. Style initial pour le test JS */
#js-test {
    background-color: #f2dede; /* Rouge = En attente */
    border: 1px solid #ebccd1;
    color: #a94442;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: all 0.3s ease; /* Joli effet de transition */
}

/* Style pour le test JS réussi */
#js-test.success {
    background-color: #d9edf7; /* Bleu = Succès JS */
    border-color: #bce8f1;
    color: #31708f;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.form-test, .image-test {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}