/* Helicopter Lunch Landing Marker Styles */
.helicopter-lunch-marker {
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.helicopter-lunch-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
}

/* Lunch Landing Popup Styles */
.lunch-landing-info {
    margin-top: 10px;
    padding: 10px;
    background: linear-gradient(135deg, #fff8f5, #fff);
    border-left: 4px solid #FF6B35;
    border-radius: 5px;
}

.lunch-landing-info h5 {
    color: #FF6B35;
    margin-bottom: 10px;
    font-weight: bold;
}

.lunch-landing-info p {
    margin: 5px 0;
    font-size: 13px;
}

.lunch-landing-info strong {
    color: #333;
}

.lunch-landing-info a {
    color: #FF6B35;
    text-decoration: none;
}

.lunch-landing-info a:hover {
    text-decoration: underline;
}

/* Location popup general styling */
.location-popup {
    max-width: 350px;
}

.location-popup h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
}

.popup-actions {
    margin-top: 15px;
    text-align: center;
}

.popup-actions .btn {
    padding: 5px 15px;
    font-size: 12px;
}
