/* Archivo: static/css/pricing_hud.css */

.pricing-hud-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem auto;
    background: transparent;
    user-select: none;
}
.pricing-hud-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.pricing-hud-needle {
    cursor: pointer;
    transition: filter 0.15s, stroke 0.15s;
    stroke: #ff7f0e;
    stroke-width: 5px;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(255,127,14,0.8));
}
.pricing-hud-needle.dragging {
    filter: drop-shadow(0 0 18px rgba(255,127,14,1)) brightness(1.3);
}
.pricing-hud-label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8rem; /* Más pequeña para caber dentro del arco */
    fill: #f1f5f9; /* Más clara para contrastar sobre el azul */
    font-weight: 600;
    text-anchor: middle;
    filter: drop-shadow(0 0 4px rgba(15,23,42,0.65)); /* Ligera sombra para legibilidad dentro del arco */
}
.pricing-hud-label-small {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8rem;
    fill: #94a3b8;
    font-weight: 400;
    text-anchor: middle;
}
.pricing-hud-value {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.1rem; /* Nuevo ajuste: más pequeña para subir aún más sin tocar borde */
    fill: #f8fafc;
    text-anchor: middle;
    dominant-baseline: middle;
    filter: drop-shadow(0 0 8px rgba(248, 250, 252, 0.6));
    font-weight: bold;
    stroke: #0f172a;
    stroke-width: 2px;
    paint-order: stroke fill;
}
.pricing-hud-bg {
    filter: drop-shadow(0 0 12px #00eaff);
}
@media (max-width: 500px) {
    .pricing-hud-container { width: 100%; max-width: 300px; height: auto; aspect-ratio: 1; }
}
