/* speedometer-styles.css */
@font-face {
    font-family: 'TGSquare';
    src: url('../../main/fonts/TGSquare.woff') format('woff');
	     url('../../main/fonts/TGSquare.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* სპიდომეტრის კონტეინერი */
.speedometer-wrapper {
    position: relative;
    width: 140px; /* Default desktop width */
    height: 100px; /* Default desktop height */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    justify-content: center;
    box-sizing: border-box;
}

/* SVG კონტეინერი */
.speedometer-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px; /* Default desktop width */
    height: 140px; /* Default desktop height, SVG is taller than wrapper */
    overflow: visible;
    transform: rotate(0deg) translateY(-40px); /* Adjust transform to center SVG in the new wrapper size */
    transform-origin: 50% 50%;
}

/* საბაზისო რკალი */
.base-arc {
    fill: none;
    stroke: #444444;
    stroke-width: 6;
}

/* პროგრესის რკალი */
.progress-arc {
    fill: none;
    stroke: #FF8C00; /* Orange */
    stroke-width: 5;
    transition: stroke-dashoffset 0.8s ease-out;
}

/* ნიშნულები (Ticks) */
.ticks-container line {
    opacity: 0.7;
}

/* მთავარი ნიშნულები */
.ticks-container line.major-tick {
    stroke: #EEEEEE; /* White */
    stroke-width: 1.8;
}

/* მცირე ნიშნულები */
.ticks-container line.minor-tick {
    stroke: #666666; /* Dark gray */
    stroke-width: 1;
}

/* რიცხვითი მნიშვნელობის ჩვენება */
.value-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 12px;
    background: #111;
    color: #FFA500;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: inset 0 0 7px rgba(255, 140, 0, 0.7);
    z-index: 2;
    width: 80px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    pointer-events: none;
	font-family: 'TGSquare', sans-serif;
}

/* ლეიბლის ტექსტი */
.label-text {
    position: absolute;
    font-size: 0.9em;
    color: #FFFFFF;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    pointer-events: none;
	font-family: 'TGSquare', sans-serif;
}