:root {
        --bg: #f4f7f6;
        --card: #ffffff;
        --primary: #2c3e50;
        --accent: #1a73e8;
        --sp95: #27ae60;
        --diesel: #f39c12;
        --text-muted: #95a5a6;
      }

      body {
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        background-color: var(--bg);
        color: var(--primary);
        padding-bottom: 20px;
      }

      #map {
        height: 40vh;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        margin: 10px;
        border-radius: 16px;
      }

      /* Masquer l'attribution Leaflet pour gagner de la place sur mobile */
      .leaflet-control-attribution { display: none; }

      .list-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 10px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 15px;
      }

      .card {
        background: var(--card);
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s;
        cursor: pointer;
        border: 1px solid rgba(0,0,0,0.05);
      }

      .card:hover { transform: translateY(-3px); }

      .station-name {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 12px;
        border-bottom: 2px solid var(--bg);
        padding-bottom: 8px;
        color: var(--accent);
        text-transform: capitalize;
      }

      .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
      }

      .fuel-type {
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--primary);
      }

      .price-tag {
        font-size: 1.3rem;
        font-weight: 800;
      }

      .sp95 { color: var(--sp95); }
      .diesel { color: var(--diesel); }

      .date {
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-top: 10px;
        text-align: right;
      }
