body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f0f2f5;
}
#header {
    position: relative;
    padding: 8px 40px 8px 15px;  
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;         
    justify-content: space-between;
    height: 44px;                 
    min-height: 0;                
}

#titulo-impacto {
    color: #4a4a4a;
    margin: 0;                  
    font-size: 24px;            
    position: relative;
    left: 100px;
}
#logos-right {
    display: flex;
    gap: 40px;                   
    align-items: center;
    margin-right: 40px;             
}
#indicator-name {
    font-size: 18px;
    color: #000000;
    margin: 5px 0 0;
    font-weight: 400;
    text-align: center;
}
#container {
    display: flex;
    height: calc(100vh - 70px);
    width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#sidebar {
    width: 260px;
    min-width: 260px;
    padding: 15px;
    background: #ffffff;
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
#map {
    flex: 1;
    height: 100%;            
    width: calc(100% - 220px); 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    left: -2px;             
}
#footer {
    background-color: #f8f9fa;      
    color: #6c757d;                 
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    position: relative;             
    bottom: 0;
}
.accordion {
    background: #e9ecef;
    padding: 12px;
    cursor: pointer;
    margin: 8px 0;
    color: #4D9F91;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    transition: background 0.2s;
    position: relative;
}
.accordion:hover {
    background: #e8e8e9;
}
.accordion.active {
    background: #dee2e6;
}
.accordion::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #4D9F91;
}
.accordion.active::after {
    content: '';
    border-top: none;
    border-bottom: 8px solid #4D9F91;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.panel {
    padding: 12px;
    display: none;
}
.panel.active {
    display: block;
}
.panel div {
    margin: 6px 0;
}
.bioma-checkbox, .riesgo-checkbox, .proyeccion-checkbox {
    margin-right: 8px;
}
.panel label {
    font-size: 14px;
    color: #495057;
}
h2 {
    color: #4D9F91;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.bioma-label {
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 2px #000000;
}
#legend {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 200px;
}
#legend h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: #343a40;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #ced4da;
    border-radius: 2px;
}
.legend-label {
    font-size: 14px;
    color: #495057;
}
.leaflet-control-layers {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 4000;
    display: block;
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 80px;
    left: 5px;
}
.leaflet-control-layers label {
    font-size: 14px;
    color: #343a40;
    margin: 4px 0;
}
.bioma-overlay-control {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.bioma-overlay-control label {
    color: #D62D37;
    font-size: 14px;
    margin-left: 8px;
}
#data-content-box {
    display: block;
}
#data-content {
    display: block;
}

#impacto-municipio-button {
  color: #017953; 
  background-color: #e0e0e0;
  font-size: 16px;
  padding: 12px 54px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  text-align: left;
  display: block; 
  width: 100%;
}

#impacto-municipio-button:hover {
  background-color: #e8e8e9;
  transform: translateY(-2px);
  box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}
