body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.page-header {
    padding: 14px 18px 12px;
    border-bottom: 1px solid #d7dee8;
    background: linear-gradient(120deg, #f2f7ff 0%, #e9fff7 100%);
}

.page-header h1 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: #0e2f4f;
}

.page-header p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #294a63;
    max-width: 980px;
}

.page-header .share-url {
    margin-top: 6px;
    font-size: 0.86rem;
    color: #1f425a;
}

.page-header .share-url a {
    color: #0b5c85;
    font-weight: 600;
    text-decoration: none;
}

.page-header .share-url a:hover {
    text-decoration: underline;
}

#map {
    height: calc(100vh - 130px);
    min-height: 420px;
    width: 100%;
}

@media (max-width: 700px) {
    .page-header {
        padding: 12px;
    }

    .page-header h1 {
        font-size: 1.02rem;
    }

    .page-header p {
        font-size: 0.84rem;
    }

    .page-header .share-url {
        font-size: 0.8rem;
    }

    #map {
        height: calc(100vh - 160px);
        min-height: 360px;
    }
}

/* Legend styling */
.info.legend {
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}

/* Windmill icon style */
.windmill-icon {
    width: 34px;
    height: 34px;
}

.windmill {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #0099cc;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.windmill::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 14px;
    background: #333;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.windmill .blades {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    animation: windmill-spin 2s linear infinite;
}

.windmill .blades::before,
.windmill .blades::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 18px;
    background: #0077b3;
    transform-origin: center center;
}

.windmill .blades::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.windmill .blades::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes windmill-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Custom styles for map features */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.leaflet-popup-content {
    margin: 10px;
}

.leaflet-popup-tip {
    background-color: white;
}

/* Layer control styling */
.leaflet-control-layers {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Custom marker styles */
.protected-feature-marker {
    background-color: #4CAF50;
    border: 2px solid #388E3C;
}

.mpa-marker {
    background-color: #2196F3;
    border: 2px solid #1976D2;
}