.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    font-family: 'Titillium Web', sans-serif;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
}   

#grafica-container {
    width: 100%;
    min-height: 600px;
    margin-bottom: 30px;
}

#grafica-casos-container {
    width: 100%;
    min-height: 400px;
    margin-bottom: 30px;
}

#mapa-container {
    width: 100%;
    margin-bottom: 30px;
}

#mapa-svg-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


#mapa-controles {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

#mapa-controles label {
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}

#mapa-controles select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    background-color: white;
    cursor: pointer;
    margin-right: 20px;
}

#mapa-controles select:hover {
    border-color: #999;
}

#tooltip {
    position: absolute;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
    display: none;
}

#grafica-edad-container {
    width: 100%;
    min-height: 450px;
    margin-bottom: 30px;
}

#edad-controles {
    background-color: transparent !important;
        font-family: 'Titillium Web', sans-serif !important;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

#edad-controles label {
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}

#edad-controles select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    background-color: white;
    cursor: pointer;
}

#edad-controles select:hover {
    border-color: #999;
}

#tooltip-edad {
    position: absolute;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
    display: none;
}

.line {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.grid line {
    stroke: #ddd;
    stroke-opacity: 0.7;
}

.grid path {
    stroke-width: 0;
}

svg text {
    font-family: Arial, sans-serif;
    font-size: 12px;
}

#mapa-svg-container svg path {
    stroke: white;
    stroke-width: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s;
}

#mapa-svg-container svg path:hover {
    opacity: 0.8;
}

.legend text {
    font-size: 14px;
    fill: #333;
}

