
body{
font-family:'Inter',sans-serif;
margin:0;
background:#f3f5f7;
color:#222;
}

header{
background:#0b4f82;
color:white;
padding:16px;
display:flex;
justify-content:space-between;
align-items:center;
}

.title{
font-size:20px;
font-weight:600;
}

.toolbar{
display:flex;
gap:10px;
}

header input{
padding:8px;
border-radius:4px;
border:none;
width:300px;
}

button{
padding:7px 10px;
border:none;
border-radius:4px;
background:#0b4f82;
color:white;
cursor:pointer;
}

button:hover{
background:#083d64;
}

#layout{
display:grid;
grid-template-columns:260px 260px 260px 1fr;
height:calc(100vh - 70px);
}

.panel{
background:white;
border-right:1px solid #e2e6ea;
padding:12px;
overflow:auto;
}

.panel h2{
margin-top:0;
font-size:15px;
}

#orgList button,
#datasetList button,
#layerList button{
width:100%;
margin-bottom:6px;
text-align:left;
background:#f1f4f7;
color:#333;
}

#orgList button:hover,
#datasetList button:hover,
#layerList button:hover{
background:#e3e8ee;
}

#map{
height:320px;
margin-bottom:10px;
border:1px solid #ccc;
}

.datasetToolbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:6px;
font-size:13px;
}

table{
border-collapse:collapse;
width:100%;
font-size:12px;
}

td,th{
border:1px solid #ddd;
padding:4px;
}

.modal{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
}

.modal-content{
background:white;
margin:10% auto;
padding:20px;
width:420px;
border-radius:6px;
}
