/* ------------------------------------ *
 CSS
 vendredi 17 juillet 2026 15:47:50
 HAPedit 3.1.11.111
 * ------------------------------------ */
 
/* ------------------------------
   PAGES INTERNES DE SIMULATEURS
--------------------------------*/

.simu-container {
    width: 90%;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.simu-title {
    font-size: 30px;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
}

.simu-premium-banner {
    background: #0066cc;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
}

.simu-description {
    background: #eef6ff;
    border-left: 5px solid #0066cc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
}

.simu-form {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #cccccc;
}

.simu-form input[type="text"],
.simu-form input[type="number"],
.simu-form select {
    width: 50%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #999;
    font-size: 16px;
}

.simu-form input[type="submit"],
.simu-form button {
    background: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.simu-form input[type="submit"]:hover,
.simu-form button:hover {
    background: #003366;
}

.simu-result {
    background: #eaf2ff;
    border-left: 5px solid #003366;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.7;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width: 900px) {
    .simu-container {
        width: 95%;
    }
}

