body{
margin:0;
font-family:Arial, sans-serif;
background:#f5f5f5;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
background:#222;
color:white;
padding:12px 20px;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-weight:bold;
font-size:18px;
}

.nav-links a{
color:white;
text-decoration:none;
margin:0 10px;
font-weight:bold;
}

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

.nav-links a.active{
	text-decoration:underline;
	color:#ffd700;
}

.nav-right button{
padding:6px 10px;
cursor:pointer;
}

#layout{
display:flex;
gap:20px;
}

#sidebar{
width:250px;
background:#fff;
border:1px solid #ddd;
padding:10px;
height:600px;
overflow:auto;
}

#binList div{
padding:5px;
border-bottom:1px solid #eee;
font-size:13px;
}

.map-container{
position:relative;
display:inline-block;
}

.map-container img{
width:100%;
display:block;
}

.marker{
position:absolute;
width:20px;
height:20px;
border-radius:50%;
background:red;
transform:translate(-50%,-50%);
cursor:pointer;
color:white;
font-size:10px;
display:flex;
align-items:center;
justify-content:center;
user-select:none;
}