.simulation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.simulation-table td {
    border: 1px solid #ddd;
    padding: 10px;
}
.simulation-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
#simulation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin-bottom: 20px;
}
#simulation-form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
#simulation-form input, #simulation-form select {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
	width: 100%;
}
#simulation-form button, #download-pdf, #request-devis {
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#simulation-form button:hover, #download-pdf:hover, #request-devis:hover {
    background-color: #005177;
}

/* Correction pour la barre d'administration de WordPress */
body.admin-bar #simulation-result {
    scroll-margin-top: 32px;
}

#download-pdf {
    background-color: #28a745;
    margin-top: 20px;
}
#download-pdf:hover {
    background-color: #218838;
}
#request-devis {
    background-color: #007bff;
    margin-right: 10px;
}
#request-devis:hover {
    background-color: #0056b3;
}
.simulation-buttons {
    margin-top: 20px;
    gap: 10px;
}
.success-message {
    background-color: #e7f3e7;
    padding: 10px;
    border: 1px solid #28a745;
    border-radius: 4px;
    color: #28a745;
    margin-top: 10px;
}
.error-message {
    background-color: #f8d7da;
    padding: 10px;
    border: 1px solid #dc3545;
    border-radius: 4px;
    color: #dc3545;
    margin-top: 10px;
}
.loading-message {
    padding: 10px;
    color: #666;
    margin-top: 10px;
}

.devis-simulation-container {
    margin-top: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}

.devis-info-prevention {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 10px;
	line-height: 1.2;
}

.devis-simulation-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.devis-simulation-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.devis-simulation-item {
    border: 2px solid #000;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    margin: 0 4px 4px 0;
    transition: all 0.2s ease;
}

.devis-simulation-item[data-current="true"] {
    background: #e2010b;
    border-color: #e2010b;
    color: #fff;
    cursor: default;
}

.devis-simulation-result {
    font-size: 1.1em;
    font-weight: bold;
}

#devis-monthly-payment {
    color: #e2010b;
}

.simulation-disclaimer {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.simulation-recap {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #0073aa;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.6;
}

.recap-highlight {
    font-weight: bold;
    color: #0073aa;
}

.recap-disclaimer {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.simulation-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

.simulation-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.simulation-image {
    flex: 1 1 450px;
    text-align: center;
}

.simulation-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

h2.simulation-main-title {
    margin: 40px 0;
    text-align: center;
    color: #003366;
}

@media (max-width: 768px) {
    .simulation-wrapper {
        flex-direction: column;
    }
}

.client-journey {
    margin-bottom: 2em;
}

.client-journey h3, .simulation-content h3 {
    text-align: left;
    color: #003366;
    margin-bottom: 1em;
}

.client-journey ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-journey li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-icon {
    width: 30px;
    height: 30px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.client-journey p {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    color: #333;
	text-align: left;
}

.simulation-button {
    display: block;
    width: 100%;
}

.simulation-button img {
    height: 1.2em;
    vertical-align: middle;
    margin-right: 8px; 
}