:root {
    --blue: rgb(136, 90, 243);
    --blue-light: rgba(136, 90, 243, 0.15);
}

.notification {
    position: fixed;
    z-index: 1000;
    top: 15px;
    padding: 10px 20px;
    max-width: min(900px, 95vw);
    text-align: center;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.notification.visible {
    display: block;
}
  
.notification.success {
    background: #D8F5D2;
    color: #2D871B;
    border-color: transparent;
}

.notification.error {
    background: #F5D2D2;
    color: #FF6060;
    border-color: #FF6060;
}

.input {
    padding: 10px 8px;
    border-radius: 5px;
    border: none;
}

.input:focus-visible {
    outline: 2px solid var(--blue);
}

.btn {
    padding: 5px 20px;
    border-width: 1px;
    border-style: solid;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600;
    border-color: var(--blue);
    transition: color .2s ease-in-out, background .2s ease-in-out;
}

.btn:hover {
    background: var(--blue);
    color: white;
}


#verif-btn {
    margin: 25px 0;
}

#map {
    width: 100%;
    height: 86vh;
}

/* Map markers styling */
#map.leaflet-container {
    border-radius: 15px;
    overflow: hidden;
}

.leaflet-popup h1, .leaflet-popup h2, .leaflet-popup h3, .leaflet-popup h4, .leaflet-popup h5, .leaflet-popup h6 {
    text-align: center !important;
    margin-bottom: 5px;
    letter-spacing: 0px !important;
}

.leaflet-popup .marker-address-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.leaflet-popup address {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    font-family: "Montserrat";
    max-width: 183px;
}

.leaflet-popup .marker-link {
    border: 1px solid #885AF3;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #885AF3;
    background: #EDE6FD;
    transition: background .2s ease-in-out, color .2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    font-family: "Montserrat";
    font-weight: 400;
}

.leaflet-popup .marker-link:hover {
    background: #885AF3;
    color: white;
}