/* Estilos Generales y Reseteo Básico */
body, html {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    height: 100%;
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

.container {
    display: flex;
    height: 100vh;
}

#map {
    width: 70%;
    height: 100%;
}

.sidebar {
    width: 30%;
    padding: 20px;
    background-color: #ffffff;
    overflow-y: auto;
    border-left: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

h2 {
    margin-top: 0;
    color: #34a853; /* Verde para obras/servicios */
}

.filters, .stats, .details-panel {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filters label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.stats p {
    margin: 5px 0;
    font-size: 1.1em;
}

.stats span {
    font-weight: bold;
    color: #34a853;
}

#details-panel {
    flex-grow: 1;
    border-bottom: none;
}

.details-item {
    margin-bottom: 10px;
}

.details-item strong {
    display: block;
    color: #555;
}