.d4e-donut-chart-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.d4e-donut-chart {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d4e-donut-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible; /* Permite que las etiquetas se muestren fuera del SVG */
}

.donut-chart-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.donut-chart-label tspan:first-child {
    font-weight: 600;
}

.donut-chart-label tspan:last-child {
    font-weight: 400;
    opacity: 0.9;
} 