html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
}

#overlay-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    align-items: center; 
    background: rgba(0, 0, 0, 0.75);
    padding: 0 20px;
    height: 36px;
    font-family: 'Inter', sans-serif;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.value-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.icon-wrapper {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    transform: translateY(1px);
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: white;
    opacity: 0.9;
}

.value {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.unit {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 1px;
}

#neighborhood {
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    text-transform: none;
}