#map {
    height: calc(100vh - 56px);
    width: 100%;
}

.airport-marker {
    background: transparent;
    border: none;
}

.airport-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.airport-icon:hover {
    transform: scale(1.3);
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.metar-data {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 0.9em;
    border-left: 4px solid #007bff;
}

.flight-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 0.8em;
}

.flight-category.vfr { background-color: #198754; }
.flight-category.mvfr { background-color: #ffc107; color: #000; }
.flight-category.ifr { background-color: #dc3545; }
.flight-category.lifr { background-color: #6f42c1; }
.flight-category.unknown { background-color: #6c757d; }

.airport-popup {
    min-width: 200px;
}

.airport-popup strong {
    font-size: 1.1em;
}

.table-responsive {
    max-height: 200px;
    overflow-y: auto;
}

.error-marker {
    background: transparent;
    border: none;
}

.error-icon {
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}