*{
box-sizing:border-box;
}

html,body{
margin:0;
padding:0;
height:100%;
}

body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
background:#f5f7f6;
display:flex;
flex-direction:column;
min-height:100vh;
color:#222;
}


/* HEADER */

.site-header{
text-align:center;
padding:14px 10px;
}

.site-header h1{
margin:0;
font-size:24px;
font-weight:600;
}

.subtitle{
color:#666;
font-size:14px;
margin-top:4px;
}


/* FILTER */

.filter-bar{
background:white;
border-bottom:1px solid #ddd;
}

.filter-inner{
max-width:1100px;
margin:auto;
text-align:center;
padding:8px;
}

.filter-inner input,
.filter-inner select,
.filter-inner button{
margin:4px;
padding:8px 12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
}

.btn-primary{
background:#2e7d32;
color:white;
border:none;
cursor:pointer;
}

.btn-primary:hover{
background:#256628;
}

.btn-secondary{
background:#eee;
}


/* ANNONS */

.top-ad{
max-width:1100px;
margin:12px auto;
text-align:center;
}


/* COUNTER */

#resultCounter{
text-align:center;
padding:8px;
font-weight:bold;
background:#e8f5e9;
border-bottom:1px solid #c8e6c9;
font-size:14px;
}


/* LAYOUT */

.layout{
flex:1;
display:flex;
max-width:1200px;
width:100%;
margin:auto;
align-items:stretch;
overflow:hidden;
}


/* MAP */

#map{
flex:3;
height:100%;
min-height:0;
}


/* PANEL */

#infoPanel{
flex:1;
max-width:360px;
padding:18px;
background:white;
border-left:3px solid #2e7d32;
overflow-y:auto;
height:100%;
}

#infoPanel h2{
margin-top:0;
color:#2e7d32;
font-size:20px;
}


/* REGION LINKS */

.region-links{
text-align:center;
padding:10px;
font-size:14px;
}

.region-links a{
color:#2e7d32;
text-decoration:none;
margin:0 6px;
}

.region-links a:hover{
text-decoration:underline;
}


/* FOOTER */

.compact-footer{
text-align:center;
padding:10px;
background:#e8f5e9;
font-size:12px;
border-top:1px solid #c8e6c9;
}

.compact-footer a{
color:#2e7d32;
text-decoration:none;
}

.compact-footer a:hover{
text-decoration:underline;
}


/* HIDDEN BUILD TIMESTAMP (Jekyll dev helper) */

.dev-build{
display:none;
font-size:11px;
opacity:0.6;
}


/* COOKIE */

#cookieBanner{
position:fixed;
bottom:0;
left:0;
right:0;
background:#2e7d32;
color:white;
padding:12px;
text-align:center;
z-index:9999;
display:none;
}

#cookieBanner button{
margin-left:15px;
padding:6px 12px;
border:none;
background:white;
color:#2e7d32;
}


/* LEAFLET */

.leaflet-container{
font:inherit;
}


/* MOBILE */

@media(max-width:900px){

.layout{
flex-direction:column;
}

#map{
width:100%;
height:50vh;
}

#infoPanel{
max-width:100%;
border-left:none;
border-top:3px solid #2e7d32;
}

.filter-inner input{
width:70%;
}

}
