* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", Helvetica, sans-serif;
    font-size: 12pt;
}

body {
    height: 100vh;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 100px ;
    overflow-x: hidden;
    background: #EDEDED;
}

.banners {
    display:block;
    border: 5px solid #EDEDED;
    border-radius: 15px;
    margin-left: 0;
    margin-right: 0;
    min-width: 0;
    height: 300px;
    background-size: cover; /* Crops to fill container */
    background-position: center; /* Centers the cropped area */
    background-position: 0% 38%;
    background-repeat: no-repeat; /* Prevents tiling */
}

.menu-1x1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    height: 50vh;
    margin: 30px 50px;
    gap:15px;
}

.menu-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 25vh;
    margin: 5px 50px;
    gap:15px;
}

.menu-6x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    height: 50vh;
    margin: 30px 50px;
    gap:15px;
}

.menu-4x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    height: 50vh;
    margin: 30px 50px;
    gap:15px;
}

.menu-2x10 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(10, 1fr);
    height: 50vh;
    margin: 30px 50px;
    gap:15px;
}

.menu-btn {
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #535F80;
    text-decoration: none;
    background-color: #fffffe;
    /* Largeur du tableau 
    background-image: url('/bannermedium.png') ;*/
    padding: 10px 10px;
    border: 1px solid #535F80;
    border-radius: 15px;
    transition: background 0.3s, transform 0.2s;
}

.menu-btn:hover {
    background: #535F80;
    border: 1px solid #EDEDED;
    border-radius: 15px;
    color: #EDEDED;
    transform: scale(0.98);
}

.distribution-map {
                position: relative;
                width: 100%;
                padding: 20px;
                box-sizing: border-box;
                margin: 0 auto;
}

 h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: "Roboto Condensed", Helvetica, sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 36pt;
    color: #081F62;
    text-align: center;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%; /* 50% of the parent container's width */
}

form {
    display: block;
    margin-top: 50px;
}







.button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}


    table {
        border-collapse: collapse;
        width: 80%;
        margin: 20px auto; /* Centre le tableau */
        font-family: Arial, sans-serif;
    }

    th, td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

    th {
        background-color: #f4f4f4;
        color: #333;
    }

/* Alternance de couleur pour les lignes du corps du tableau */
tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Couleur pour les lignes impaires */
}

/* Effet au survol des lignes */
tbody tr:hover {
    background-color: #e0e0e0;
}

/* Style pour le pied de tableau */
tfoot tr {
    background-color: #e0e0e0;
    font-weight: bold;
}

/* Aligner le total à droite dans le pied de tableau */
tfoot td:last-child {
    text-align: right;
}

a:link {
        text-decoration: none;
      }
      a:visited {
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }
      a:active {
        text-decoration: underline;
      }

    /* Mobile stacked style */
    @media (max-width: 2000px) {
        table, thead, tbody, th, td, tr {
            display: block; /* Stack elements */
        }

        thead tr {
            display: none; /* Hide table header */
        }

        tr {
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
            background: #fff;
        }

        td {
            border: none;
            position: relative;
            padding-left: 50%; /* Space for label */
            text-align: left;
            font-size: 15px;
        }

        td::before {
            position: absolute;
            top: 8px;
            left: 10px;
            width: 45%;
            white-space: nowrap;
            font-weight: bold;
            color: #333;
            content: attr(data-label); /* Pull label from HTML attribute */
        }
        a:link {
        text-decoration: none;
      }
      a:visited {
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }
      a:active {
        text-decoration: underline;
      }
    }

