/* Styles pour la calculette */
.calculator-modal {
    max-width: 1000px;
    width: 90%;
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.calculator-form {
    flex: 1;
    min-width: 300px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

#map_canvas {
    width: 100%;
    height: 100%;
}

.price-display {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.warning-message {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 8px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 4px;
}

.result-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
    color: #555;
}

.result-value {
    font-size: 18px;
    font-weight: bold;
    color: #3498db;
}

#generated_price {
    color: #2ecc71;
    font-size: 24px;
}

@media (max-width: 768px) {
    .calculator-container {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
}
