html, body {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f5f7f2 0%, #eef3ef 100%);
    color: #17313a;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    color: #0f766e;
}

button,
input,
select,
textarea {
    font: inherit;
}

.dashboard-metric {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0f766e;
}

.loading-progress {
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 18vh auto 1rem;
}

.loading-progress circle {
    fill: none;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:first-child {
    stroke: rgba(15, 118, 110, 0.16);
}

.loading-progress circle:last-child {
    stroke: #0f766e;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 75;
}

.loading-progress-text {
    text-align: center;
    color: #0f766e;
    font-weight: 600;
}
