.aitopia-context-container {
    position: fixed;
} /* Analyticsin ekledigi divin siteyi kaydırmasını engelliyor */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #dcf8ff;
    color: #0a0a0a;
}

body {
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 1.9em;
    margin-bottom: 0;
    margin-top: 1rem;
}

p {
    font-size: 1.2em;
    margin-bottom: 0;
    margin-top: 1rem;
    padding: 0 8rem;
}

a {
    text-decoration: none;
}

header {
    color: #fffff0;
    padding: 0.2rem 0;
    border-bottom: #0a0a0a solid 2px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* #nav-logo {
    box-sizing: border-box;
    border: black solid 2px;
    border-radius: 100%;
    height: 100%;
} */

nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    height: 4vw;
    margin: 0px 0px 0px 0.9rem;
    position: relative;
}

nav ul li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    box-sizing: border-box;
    color: #0a0a0a;
    padding: 0.4rem;
    text-decoration: none;
}

.nav-title {
    margin: 0px;
}

#lang-box {
    width: 7vw;
    margin: 0px 0.9rem;
    position: relative;
    display: block;
}

/* Style The Dropdown Button */
.langbtn {
    height: 3.2vw;
    width: 100%;
    background-color: transparent;
    padding: 0px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.langbtn img {
    height: 100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    width: 100%;
    display: none;
    position: absolute;
    background-color: transparent;
    z-index: 1;
}

.dropdown-content img {
    width: 48%;
}

/* Links inside the dropdown */
.dropdown-content a {
    height: 3vw;
    text-align: center;
    padding: 0px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 auto;
    text-align: center;
}

#map {
    width: 75%;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* .notselected {
    fill: #cccccc;
}

path {
    fill: #b41c24;
} */

path:hover {
    cursor: pointer;
}

text {
    user-select: none;
}

text:not(#pselectedCities) {
    pointer-events: none;
}

#downloadButton {
    font-size: 1.5rem;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    border: 2px solid #0a0a0a;
    border-radius: 0.6rem;
    background-color: #FF2400;
}

#downloadButton:hover {
    cursor: pointer;
}

footer {
    flex-shrink: 0;
    text-align: center;
    padding: 0.5rem 0;
    border-top: solid 2px #0a0a0a;
    font-size: 0.9rem;
}


@media (max-width: 1100px) {
    p {
        padding: 0rem 0.5rem;
    }
    nav ul li {
        height: 13vw;
        margin: 0px 0px 0px 0.7rem;
    }
    nav ul li a {
        font-size: 1em;
    }
    #lang-box {
        width: 15vw;
    }
    .langbtn {
        height: 9vw;
    }
    .dropdown-content a {
        height: 9vw;
    }
    #map {
        width: 100%;
    }
    #downloadButton {
        font-size: 1rem;
        padding: 0.5rem 0.7rem;
    }
}