/* Airplane Theme Specific Styles */
.plane-container {
    position: fixed;
    top: 10vh;
    left: 20px; /* offset to the left of the column */
    width: 60px;
    height: 80vh;
    pointer-events: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.map-icon {
    width: 50px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

#airplane {
    position: absolute;
    top: 0;
    width: 45px;
    height: auto;
    z-index: 110;
    transition: transform 0.1s ease-out;
}

@media (max-width: 800px) {
    .plane-container {
        left: 5px;
    }
    #airplane {
        width: 30px;
        height: 30px;
    }
}
