.hero-panel {
    
}
.rate-value {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.rate-valueinfo{
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
    padding-left: 1rem;
    height: 6rem;
}

.night .rate-valueinfo {
    border: 1px solid #444;
    background-color: #181a1b;
}

.listening-indicator {
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 100%;
    background-color: #4CAF50;
    margin-right: 8px;
    transition: background-color 0.15s;
}

.current-rate {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.stat-cell {
    border-radius: 6px;
    padding: 0.75rem 0;
    text-align: center;
    border: 1px solid #eee;
}

.night .stat-cell {
    border: 1px solid #444;
    background-color: #181a1b;
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8aa9ce;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1rem;
    line-height: 1.2;
}

.stat-detail {
    font-size: 0.5rem;
    color: #779fc7;
    margin-top: 6px;
}

.intervalChartdiv{
    border: 1px solid #eee;
    padding: 0.5rem;
    height: 6rem;
}

.night .intervalChartdiv {
    border: 1px solid #444;
    background-color: #181a1b;
}

.intervalChartdiv canvas{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: crosshair;
}

.fazhisetup{
    border: 1px solid #eee;
    margin-bottom: 0.25rem;
    padding: 0.5rem;
    border-radius: 3px;
    position: relative;
}

.night .fazhisetup{
    border: 1px solid #444;
    background-color: #181a1b;
}

.fazhisetup>div:first-child{
    height: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 0.5rem;
}

.fazhisetup>div:first-child span{
    font-size: 0.6rem;
    float: right;
}

.fazhisetup>div:last-child{
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
}

@media screen and (max-width: 1180px){
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px){
    .rate-value{
        display: block;
    }

    .intervalChartdiv{
        margin-top: 0.75rem;
    }
}

@media screen and (max-width: 450px){
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 265px){
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}


.rating-fair {
    color: #b17d3f;
}
.rating-good {
    color: #6f9647;
}
.rating-great {
    color: #3985a3;
}
.rating-excellent {
    color: #5d4f9b;
}