/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

/* Map styles */
#map {
    border-radius: 0.25rem;
    z-index: 1;
}

/* Airport marker styles */
.airport-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3388ff;
    color: white;
    border-radius: 50%;
    border: 2px solid white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.marker-content {
    font-size: 0.8rem;
    text-align: center;
}

/* Weather table styles */
#weather-data table {
    font-size: 0.9rem;
}

#weather-data th {
    white-space: nowrap;
}

#weather-data td {
    vertical-align: middle;
}

/* Route info styles */
#route-info {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #map {
        height: 300px !important;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}