﻿.gauge-container {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.gauge-container .dial {
    stroke: #e7eaee;
    stroke-width: 10;
}

.gauge-green .value {
    stroke: #25b177;
    stroke-width: 10;
}

.gauge-blue .value {
    stroke: #2980b9;
    stroke-width: 10;
}

.gauge-red .value {
    stroke: #d9534f;
    stroke-width: 10;
}

.gauge-green .value-text {
    color: #25b177;
}

.gauge-blue .value-text {
    color: #2980b9;
}

.gauge-red .value-text {
    color: #d9534f;
}

.goal-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.goal-circle {
    width: 72px;
    height: 72px;
    border: 5px solid #2980b9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #2980b9;
}

.arrow {
    font-size: 29px;
    color: #999;
    font-weight: bold;
}

.target-circle {
    width: 72px;
    height: 72px;
    border: 2px #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #999;
}

.progress-bar-container {
    display: flex;
    width: 100%;
    height: 25px;
    background-color: #e7eaee;
    border-radius: 5px;
    overflow: hidden;
    border-radius: 50px;
}

.progress-bar {
    display: grid;
    place-content: center;
    height: 100%;
    border-right: 1px solid #fff;
    text-align: center;
}

.progress-bar[style*="background-color"] {
    color: #fff;
}

.labels {
    display: flex;
}

.label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-align: right;
}

.label-text {
    margin-right: -15px;
    font-weight: 600;
}