#map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    font-size: 12px;
}
.result-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
    display: none;
}
.result-card.severe-zone .card-header {
    background: linear-gradient(135deg, #dc3545, #bd2130);
    color: white;
}
.result-card.moderate-zone .card-header {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}
.result-card.low-zone .card-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}
.result-card.high-zone .card-header {
    background: linear-gradient(135deg, #fd7e14, #e85a0c);
    color: white;
}
.result-card.not-in-zone .card-header {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}
.result-card .card-header {
    padding: 15px;
    font-weight: 600;
}
.result-card .card-body {
    padding: 20px;
}
.result-info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}
.result-info:last-child {
    border-bottom: none;
}
.info-label {
    font-weight: 600;
    color: #555;
}
.info-value {
    color: #333;
}
.zone-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.zone-status.severe {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.zone-status.moderate {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.zone-status.low {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}
.zone-status.high {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}
.zone-status.not-affected {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}
.loader {
    display: none;
    text-align: center;
    padding: 20px;
}
.loader .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #FF6725;
}
.map-instruction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 400;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.map-instruction.visible {
    opacity: 1;
}
.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}
.leaflet-interactive:focus {
    outline: none !important;
}
.leaflet-container path.leaflet-interactive:focus {
    outline: none !important;
}
.leaflet-overlay-pane svg {
    outline: none !important;
}
.leaflet-overlay-pane path {
    outline: none !important;
}
svg:focus, path:focus {
    outline: none !important;
}
.custom-marker {
    border: 2px solid white;
    border-radius: 50%;
    width: 15px !important;
    height: 15px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.custom-marker.severe {
    background-color: #dc3545;
}
.custom-marker.moderate {
    background-color: #28a745;
}
.custom-marker.low {
    background-color: #007bff;
}
.custom-marker.high {
    background-color: #fd7e14;
}
.custom-marker.not-affected {
    background-color: #6c757d;
}
.zone-legend {
    position: absolute;
    bottom: 24px;
    left: 10px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 12px;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.legend-item:last-child {
    margin-bottom: 0;
}
.legend-color {
    width: 20px;
    height: 3px;
    margin-right: 8px;
}
.legend-color.red {
    background-color: #dc3545;
}
.legend-color.green {
    background-color: #28a745;
}
.legend-color.blue {
    background-color: #007bff;
}
.legend-color.orange {
    background-color: #fd7e14;
}
.legend-color.purple {
    background-color: #6f42c1;
}
.restrictions-list, .guidelines-list, .approvals-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.restrictions-list li, .guidelines-list li, .approvals-list li {
    background-color: #f8f9fa;
    padding: 6px 10px;
    margin: 3px 0;
    border-radius: 4px;
    border-left: 3px solid #007bff;
    font-size: 13px;
}
.restrictions-list li {
    border-left-color: #dc3545;
}
.guidelines-list li {
    border-left-color: #28a745;
}
.location-button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    margin-bottom: 10px;
}
.location-button:hover {
    background-color: #FF6725;
    color: #fff;
}
.location-button.active {
    background-color: #FF6725;
    color: #fff;
}
.airport-search-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    width: calc(100% - 100px);
    max-width: 400px;
}
.airport-search-box {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}
.airport-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1001;
}
.airport-search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}
.airport-search-result-item:hover {
    background-color: rgba(255, 103, 37, 0.1);
}
.map-controls-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
.leaflet-popup-content-wrapper {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.leaflet-tooltip {
    background-color: rgba(45, 45, 45, 0.9);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.leaflet-tooltip::before {
    border-top-color: rgba(45, 45, 45, 0.9);
}
.leaflet-tooltip-left::before {
    border-left-color: rgba(45, 45, 45, 0.9);
}
.leaflet-tooltip-right::before {
    border-right-color: rgba(45, 45, 45, 0.9);
}
.leaflet-tooltip-bottom::before {
    border-bottom-color: rgba(45, 45, 45, 0.9);
}
.place-popup-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
}
.place-popup-title.severe {
    color: #dc3545;
}
.place-popup-title.moderate {
    color: #28a745;
}
.place-popup-title.low {
    color: #007bff;
}
.place-popup-title.high {
    color: #fd7e14;
}
.place-popup-title.not-affected {
    color: #6c757d;
}
.height-info {
    background-color: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    padding: 10px;
    margin-top: 10px;
}
.height-info h6 {
    color: #004085;
    margin-bottom: 5px;
}
.height-info p {
    margin: 0;
    color: #004085;
    font-size: 18px;
    font-weight: bold;
}
.zones-list {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
}
.zone-item {
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}
.zone-item:last-child {
    border-bottom: none;
}
.zone-type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 5px;
}
.zone-type-badge.funnel {
    background-color: #e3f2fd;
    color: #1976d2;
}
.zone-type-badge.trough {
    background-color: #f3e5f5;
    color: #7b1fa2;
}
.zone-type-badge.flight-path {
    background-color: #fff3e0;
    color: #f57c00;
}
.zone-type-badge.iaf {
    background-color: #ffebee;
    color: #c62828;
}
.airport-noc-cta-section {
    background: linear-gradient(135deg, #ff6725 0%, #ff8850 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.airport-noc-cta-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -100%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.3) 20px
    );
    animation: flight-path 15s linear infinite;
    z-index: 0;
}
.airport-noc-cta-section::after {
    content: '\2601';
    position: absolute;
    top: 15%;
    left: -10%;
    font-size: 40px;
    opacity: 0.2;
    animation: cloud-float-1 25s linear infinite;
    z-index: 0;
}
.wave-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.wave-overlay::before {
    content: '\2601';
    position: absolute;
    top: 60%;
    left: -5%;
    font-size: 35px;
    opacity: 0.15;
    animation: cloud-float-2 30s linear infinite;
}
.wave-overlay::after {
    content: '\2708';
    position: absolute;
    top: 30%;
    left: -10%;
    font-size: 24px;
    opacity: 0.4;
    animation: airplane-fly 20s linear infinite;
}
@keyframes flight-path {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
@keyframes cloud-float-1 {
    0% { left: -10%; transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { left: 110%; transform: translateY(0); }
}
@keyframes cloud-float-2 {
    0% { left: -5%; transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { left: 105%; transform: translateY(0); }
}
@keyframes airplane-fly {
    0% { left: -10%; top: 30%; }
    25% { top: 25%; }
    50% { top: 35%; }
    75% { top: 28%; }
    100% { left: 110%; top: 30%; }
}
@keyframes airplane-fly-2 {
    0% { left: -10%; top: 45%; }
    30% { top: 40%; }
    60% { top: 50%; }
    100% { left: 110%; top: 45%; }
}
@keyframes airplane-fly-3 {
    0% { left: -10%; top: 20%; }
    40% { top: 15%; }
    70% { top: 25%; }
    100% { left: 110%; top: 20%; }
}
@keyframes airplane-fly-4 {
    0% { left: -10%; top: 55%; }
    35% { top: 50%; }
    65% { top: 60%; }
    100% { left: 110%; top: 55%; }
}
@keyframes airplane-fly-5 {
    0% { left: -10%; top: 35%; }
    25% { top: 32%; }
    50% { top: 38%; }
    75% { top: 33%; }
    100% { left: 110%; top: 35%; }
}
.airplane-2 {
    position: absolute;
    top: 45%;
    left: -10%;
    font-size: 20px;
    opacity: 0.35;
    animation: airplane-fly-2 25s linear infinite;
    animation-delay: 5s;
}
.airplane-3 {
    position: absolute;
    top: 20%;
    left: -10%;
    font-size: 22px;
    opacity: 0.3;
    animation: airplane-fly-3 18s linear infinite;
    animation-delay: 8s;
}
.airplane-4 {
    position: absolute;
    top: 55%;
    left: -10%;
    font-size: 19px;
    opacity: 0.32;
    animation: airplane-fly-4 22s linear infinite;
    animation-delay: 12s;
}
.airplane-5 {
    position: absolute;
    top: 35%;
    left: -10%;
    font-size: 21px;
    opacity: 0.37;
    animation: airplane-fly-5 24s linear infinite;
    animation-delay: 3s;
}
.airport-noc-cta-section h4 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.airport-noc-cta-section p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.95;
}
.airport-noc-cta-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #ff6725;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.airport-noc-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #cc4400;
    background-color: #fff;
}
.airport-noc-cta-button i {
    transition: transform 0.3s ease;
}
.airport-noc-cta-button:hover i {
    transform: translateX(5px);
}
