#map {
    height: 50%;
    width: 40%;

}
gmp-map {
    height: 500px;
    width: 550px;
}

.map-legend {
    width: 550px;
}
.map-legend-marker {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    margin-top: 5px;
    font-size: smaller;
    text-align: justify;
}

.filter-red {
    filter: invert(13%) sepia(100%) saturate(7484%) hue-rotate(359deg) brightness(97%) contrast(116%);   
}
.filter-orange {
    filter: brightness(0) saturate(100%) invert(53%) sepia(87%) saturate(2971%) hue-rotate(1deg) brightness(102%) contrast(106%);
}
.filter-yellow {
    filter: invert(100%) sepia(98%) saturate(3501%) hue-rotate(356deg) brightness(103%) contrast(105%);
}
.filter-green {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}
 .filter-vibrant-orange {
    filter: invert(36%) sepia(98%) saturate(2256%) hue-rotate(344deg) brightness(101%) contrast(106%);
 }
 .filter-gray {
    filter: brightness(0) saturate(100%) invert(59%) sepia(5%) saturate(792%) hue-rotate(30deg) brightness(96%) contrast(87%);
 }
 .filter-beige {
  filter: invert(96%) sepia(10%) saturate(1008%) hue-rotate(20deg) brightness(103%) contrast(92%);
}
.filter-violet {
  /* Converts #ffffff into a vibrant violet color */
  filter: invert(34%) sepia(91%) saturate(3085%) hue-rotate(256deg) brightness(85%) contrast(107%);
}
.filter-pink {
  filter: invert(53%) sepia(91%) saturate(3054%) hue-rotate(314deg) brightness(101%) contrast(102%);
}
.filter-blue {
  /* Step 1: Turn white (#fff) into black (#000) */
  filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(195deg) brightness(100%) contrast(100%);
}
.filter-brown {
    filter: invert(34%) sepia(85%) saturate(391%) hue-rotate(343deg) brightness(88%) contrast(90%);
}

.container-incident {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 20px 10px;
}

.formulaire {
    width: 60%;
    margin-bottom: 30px;
    }

.form-filtre {
    border: 1px dashed black;
    border-radius: 5px;
    padding: 2% 1%;
    background-image: url("/images/thumbnails/dark-dotted-2.png");
    background-repeat: repeat;
    
}
.form-filtre > fieldset {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap; 
    gap: 20px;
    border: none;
}
.incident_type {
    background-color: rgb(206, 248, 248);
    border: 2px solid rgb(79, 101, 197);
    height: 30px;
    width: 300px;
    border-radius: 2px;
}
.pays_large {
    background-color: rgb(206, 248, 248);;
    height: 30px;
    margin-left: 10px;
    border: 2px solid rgb(79, 101, 197);
    width: 300px;
    border-radius: 2px;
}
.start_incident, .end_incident {
    width: 300px;
    border: 2px solid rgb(79, 101, 197);
    height: 30px;
    background-color: rgb(206, 248, 248);
    border-radius: 2px;
    
}
.start_incident {
    margin-left: 30px;
}

.form-submit {
    width: 200px;
    margin-left: 115px;
    height: 40px;
    background-color: rgb(101, 101, 152);
    background-image: url("/images/thumbnails/funnel-fill.svg");
    background-repeat: no-repeat;
    background-position: 25% 50%;
    color: white;
    font-size: larger;
    border-radius: 10px;
}

.incidents-page-number {
    display: inline-block;
    cursor: pointer;
    border: 1px solid black;
    width: 30px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-top: 10px;
    background-color: rgb(143, 190, 247);
}
.incidents-page-number-selected {
    background-color: rgb(79, 101, 197);
    color: white;
    font-weight: bold;
} 
.incidents-page-unique {    
    background-color: rgba(8, 131, 149, 0.3);
    height: auto;
    padding: 20px;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 0px 5px 0px;
    margin-bottom: 10px;
    margin-top: 1px;
} 

.incidents-page {
    display: none;
}

.one {
    display: table-row;
}


table {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: small;
}

th {
    border: 1px solid black;
}

td {
    border: 1px solid black;
}

th, td {
    padding-left: 8px;
    padding-right: 8px;
}
/* 
tr:nth-child(odd) {
    background-color: white;
} */

tr:nth-child(even) {
    background-color: rgb(231, 231, 235);
}

thead > tr {
    background-color: darkblue;
    color: whitesmoke;
}

@media screen and (max-width: 768px) {
    .container-incident {
        flex-direction: column;
    }

    .formulaire {
        width: 100%;
    }

    #map {
        width: 100%;
        height: 300px;
    }

    gmp-map {
        width: auto;
        height: 300px;
    }

    .map-legend {
        width: auto;
    }

    .form-filtre > fieldset {
        display: flex;
        flex-direction: column;
    }
    
}
