.airport-profile-container {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 42px;
    font-family: Verdana, sans-serif;
    color: #ffffff;
}

.airport-profile {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto auto;    
    gap: 5px;
}

.airport-profile-left {
    display: flex;
    flex-direction: column;
    grid-column: 1 / 2;
    grid-row: 1 / 2;

}

.airport-profile-info {
    height: 250px;
    border-radius: 10px;
    background-color: #112839;
    margin-bottom: 5px;
    padding: 15px;    
}

.airport-profile-top-image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border: 5px solid #112839;    
    border-radius: 10px;
    background-color: #112839;
}

.airport-profile-top-image img {
    border-radius: 7px 7px 0 0;
    width: 100%;
    height: calc(960px * 9 / 16);
    max-height: 100%;
    object-fit: cover;
}

.airport-profile-right {
    border-radius: 10px;
    background-color: #112839;
}

.airport-profile-profile-image {
    display: flex;              /* Flexbox aktivieren */
    justify-content: center;    /* Horizontal zentrieren */
    align-items: center;    
    grid-column: 2 / 3;
    grid-row: 1 / 3;    
    border-radius: 10px;
    background-color: #112839;
    
}

.airport-profile-profile-image img {
    width: 75%;
    margin-top: 33px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.map-airport-routes {
    height: 390px;
    margin-bottom: 0px;
    border: 5px solid;
    border-color: #112839;
    border-radius: 10px;
}

/* Reuse infowindow styling from profile map */
.map-infowindow {
    background-color: #112839;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-infowindow a {
    color: #ffffff;
    text-decoration: none;
}

.airport-profile-latest-images {
    background-color: #ffffff;
}