#map { height: 100vh; width: 100%; }
.info-box {
    position: absolute;
    top: 100px;
    left: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    display: none;
}





.flight-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.6); /* Şeffaf arka plan */
    backdrop-filter: blur(5px); /* Hafif bulanık efekt */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1000;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo img {

    height: 75px;
    margin-right: 600px;
}

.flight-info {
    flex: 1;
    text-align: center;
}

.clock {
    font-size: 14px;
    font-weight: bold;
}
.sol {

    flex: 1;
    text-align: left;
}
.sol > a{
    font-size: 10px;
}
.search{
    padding-left: 20px;
}
.search > input{
    border-radius: 8px;
    width: 250px;
}

/* Mobil için stiller (maksimum genişlik 768px'e kadar) */
@media screen and (max-width: 768px) {


    .logo {
        flex: 1;
        text-align: center;
    }

    .logo img {
        height: 75px;
        margin-right: 0px;
    }

    .clock {

        display: none;

    }

    .sol {

        display: none;
    }
}