:root {
    --bg-color: #181b1f;
    /* --bg-color: grey; */
    --grid-color: #444;
    --axis-color: #aaa;
    --text-color: rgb(204, 204, 220);
    --series-color: #4caf50;
    --low-price-color: rgb(115, 191, 105);
    --low-price-fill-color: rgb(115, 191, 105, 0.2);
    --medium-price-color: rgb(234, 184, 57);
    --medium-price-fill-color: rgb(234, 184, 57, 0.2);
    --high-price-color: rgb(242, 73, 92);;
    --high-price-fill-color: rgb(242, 73, 92, 0.2);
}

.np-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    height: 300x;
    max-width: 650px;
    width: 100%;
}

.np-dashboard-now {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 250px;
    max-width: 650px;
    width: 100%;
}

.np-panel {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.np-panel-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: 0em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: calc(100% - 8px);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0px;
}

.np-big-number {
    font-size: clamp(20px, calc(20px + (124 * (100vw - 100px) / 450)), 144px);
    font-weight: 550;
}

.price-span {
    font-weight: bold;
    font-size: large;
    background-color: #181b1f;
    border: 1px solid #ccccdc12;
    padding-left: 5px;
    padding-right: 5px;
}

.u-title {
    color: var(--text-color);
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    font-size: 12px !important;
}

.u-legend {
    color: var(--text-color) !important;
}

.price-low {
    color: var(--low-price-color);
}

.price-medium {
    color: var(--medium-price-color);
}

.price-high {
    color: var(--high-price-color);
}

.price-info-span {
    font-style: italic;
    font-size: smaller;
}