/*  Projet  :   Projet Europemap Leaflet. Fichier de style
 *  Détails :   Le fichier de style CSS pour le projet.
 *  Auteur  :   Maksym Ptytsia
 *  Date    :   08.11.2024
 *  Vérsion :   v. 1.0
 */
body{
    width: 100vw;
    display: grid;
}

#map {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color:  rgb(7, 124, 56);
}

img[id="flag"]{
    width: 8em;
}

.leaflet-popup-content h2{
    font-size: large;
}

.dropdown, .btn, .input-group{
    position: relative;
    justify-self: right;
    z-index: 2;
    margin-top: 5px;
    margin-right: 5px;
    width: 175px !important;
}

#reportForm{
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
    background-color: white;
    width: 60vw;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

textarea{
    margin-top: 5px !important;
    height: 200px;
    resize: none;
}

form input, label{
    margin-top: 5px !important;
}

button[type="submit"]{
    width: 100% !important;
    margin-top: 20px;
}

#close{
    float: right !important;
}

.success{
    color: black;
    position: relative;
    text-align: center;
    z-index: 2;
    background-color: rgba(128, 128, 128, 0.397);
}

.error{
    font-size: large;
    color: crimson;
}