html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #f2f4f7;
}
 
#container {
    display: flex;
    height: 100vh;
}
 
/* PANEL */
 
#panel {
    width: 380px;
    min-width: 340px;
    background: #ffffff;
    padding: 25px;
    box-sizing: border-box;
    overflow-y: auto;
    border-right: 1px solid #e5e5e5;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
 
/* MAPA */
 
#map {
    flex: 1;
}
 
/* NAGŁÓWEK */
 
h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #1b5e20;
    border-bottom: 2px solid #2e7d32;
    padding-bottom: 10px;
}
 
p {
    color: #555;
    line-height: 1.5;
}
 
/* ETYKIETY */
 
label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}
 
/* POLA */
 
input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.2s;
    background: white;
}
 
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 6px rgba(46, 125, 50, 0.25);
}
 
/* PRZYCISK */
 
button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}
 
button:hover {
    background: #1b5e20;
    transform: translateY(-1px);
}
 
/* PRZEŁĄCZNIKI */
 
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 18px 0;
}
 
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}
 
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
 
.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #cfcfcf;
    border-radius: 28px;
    transition: 0.3s;
}
 
.slider:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}
 
.switch input:checked + .slider {
    background: #2e7d32;
}
 
.switch input:checked + .slider:before {
    transform: translateX(24px);
}
 
/* RESPONSYWNOŚĆ */
 
@media (max-width: 900px) {
 
    #container {
        flex-direction: column;
    }
 
    #panel {
        width: 100%;
        max-width: none;
        min-width: auto;
        height: 45%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        box-shadow: none;
    }
 
    #map {
        height: 55%;
    }
}
/* ===== Nagłówek ===== */
 
.header{
    margin-bottom:25px;
}
 
.header h2{
    margin:0;
    color:#1B5E20;
    font-size:30px;
    font-weight:700;
}
 
.subtitle{
    margin-top:8px;
    margin-bottom:20px;
    color:#666;
    font-size:15px;
    line-height:1.5;
}
 
.instruction{
 
    background:#E8F5E9;
 
    border-left:5px solid #2E7D32;
 
    padding:15px;
 
    border-radius:10px;
 
    margin-bottom:25px;
 
}
 
.instruction strong{
 
    display:block;
 
    margin-bottom:10px;
 
    color:#1B5E20;
 
}
 
.instruction ol{
 
    margin:0;
 
    padding-left:20px;
 
}
 
.instruction li{
 
    margin-bottom:8px;
 
}
/* ===== Stopka ===== */
 
.footer{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #ddd;
    text-align:center;
    font-size:13px;
    color:#666;
    line-height:1.6;
}
 
.footer strong{
    color:#1B5E20;
    font-size:14px;
}
/* ===== WYBÓR WARSTWY ===== */
 
.layer-choice{
 
    background:#f8f9fa;
 
    padding:15px;
 
    border-radius:10px;
 
    margin-bottom:20px;
 
    border-left:5px solid #2E7D32;
 
}
 
 
.layer-choice h3{
 
    font-size:18px;
 
    margin-top:0;
 
    border:none;
 
    padding:0;
 
}
 
 
.radio-option{
 
    display:flex;
 
    align-items:center;
 
    gap:10px;
 
    margin-top:12px;
 
    font-weight:500;
 
    cursor:pointer;
 
}
 
 
.radio-option input{
 
    width:auto;
 
}

/* ===== LEGENDA MAPY ===== */

.legenda {

    background: white;

    padding: 12px;

    border-radius: 8px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);

    font-size: 14px;

    line-height: 1.8;

}

.legenda h4 {

    margin: 0 0 8px 0;

    color: #333;

}

.legend-point {

    display: inline-block;

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: white;

    border: 2px solid black;

    margin-right: 8px;

    vertical-align: middle;

}

.legend-polygon {

    display: inline-block;

    width: 18px;

    height: 14px;

    background: #81C784;

    opacity: 0.6;

    border: 2px solid #1B5E20;

    margin-right: 8px;

    vertical-align: middle;

}

/* ===== PANEL WARSTW MAPY ===== */

.leaflet-control-layers {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    font-size: 14px;
}

.leaflet-control-layers label {
    margin-top: 5px;
    font-weight: 500;
}

#panelWarstw {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 260px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

#panelWarstw h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.warstwa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: normal;
}

.warstwa span{
    flex: 1;
}

#panelWarstw input[type="range"] {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
}

.symbol {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Punkt */
.symbol.punkt {
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  background: #fff;
  border-radius: 50%;
}

/* Poligon */
.symbol.poligon {
  width: 18px;
  height: 18px;
  background: #81C784;
  border: 2px solid #1B5E20;
}

/* Granica */
.symbol.granica {
  width: 18px;
  height: 0;
  border-top: 3px solid #000;
  margin-top: 8px;
}

#naglowekWarstw{
 
display:flex; 
justify-content:space-between; 
align-items:center; 
cursor:pointer; 
font-weight:bold; 
margin-bottom:10px;
 
}
 
#toggleWarstwy{
 
border:none; 
background:#333; 
color: white;
width: 25px;
height:25px;
border-radius: 50%;
font-size: 16px;
line-height: 20px;
display: flex;
justify-content: center;
 
}
 
#zawartoscWarstw{
 
display:block;
 
}