/* 🎨 Style Global */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafc;
    color: #333;
}

/* 📝 En-tête */
header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px;
    border-bottom: 4px solid #388E3C;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header p {
    font-size: 14px;
}

/* 📝 Formulaire */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #4CAF50;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
}

button:hover {
    background-color: #388E3C;
}

/* 🟢 Barre de Progression */
#progress-section {
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
}

#progress-bar-container {
    width: 100%;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

#progress-bar {
    width: 0%;
    height: 20px;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

#progress-status {
    font-size: 14px;
    margin-top: 10px;
}

/* 📊 Résultats et Comparables */
#results, #comparables {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
}

#results-content, #comparables-content {
    background: #f1f1f1;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #ccc;
}

#comparables-content a {
    color: #007BFF;
    text-decoration: none;
}

#comparables-content a:hover {
    text-decoration: underline;
}

/* 🛡️ Pied de Page */
footer {
    margin-top: 30px;
    text-align: center;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
}
