/* Conteneur principal */
#dsp-container {
    background-color: #f3f4f6; /* gris clair */
    padding: 20px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Titres */
#dsp-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
}

#dsp-container p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

/* Cartes et colonnes */
.dsp-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dsp-left, .dsp-right {
    flex: 1;
    min-width: 300px;
}

/* Cartes internes */
.dsp-card {
    background-color: #fff; /* blanc */
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Champs input */
.dsp-card input[type="text"],
.dsp-card input[type="tel"],
.dsp-card input[type="number"],
.dsp-card input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Boutons */
.dsp-btn {
    background-color: #4c7be1;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.dsp-btn:hover {
    background-color: #3b63c7;
}

/* KPI box */
.kpi-box {
    padding: 12px 15px;
    font-size: 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kpi-box:last-child {
    border-bottom: none;
}

/* Carte */
#map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/* Graphique */
#dspChart {
    width: 100% !important;
    height: 250px !important;
}

/* Zone ville */
#dsp-city {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

#dsp-city input {
    flex: 1;
}

#dsp-city button {
    flex-shrink: 0;
}

/* Hero / intro */
.dsp-hero {
    text-align: center;
    margin-bottom: 30px;
}

/* Responsive */
@media(max-width: 750px){
    .dsp-grid { flex-direction: column; }
}