.demodatas{
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.75rem;
}

.night .demodatas{
    border:1px solid #444;
}

.demodatas .tits{
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.night .demodatas .tits{
    border-bottom: 1px solid #444;
}

.demodatalist{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.demodatalist>div{
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

.night .demodatalist>div {
    background-color: #444;
}

.demodatalist>div>div:first-child{
    font-weight: 600;
    color: #3498db;
    margin-bottom: 8px;
    font-size: 0.6rem;
}

.demodatalist>div>div:last-child{
    font-size: 0.6rem;
    word-wrap: break-word;
}

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

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

/***************************************/

.demotimes{
    margin-top: 0.75rem;
    border: 1px solid #eee;
    display: none;
}

.night .demotimes{
    border: 1px solid #444;
}

.demotimes>div{
    height: 1.8rem;
    line-height: 1.8rem;
    background-color: #f6f7fa;
    padding-left: 0.5rem;
    border-bottom: 1px solid #eee;
}

.night .demotimes>div{
    background-color: #181a1b;
    border-bottom: 1px solid #444;
}

.demotimes>ul{
    padding: 0.5rem;
}

.demotimes ul li{
    border-bottom: 1px solid #eeeeee;
    height: 1.5rem;
    line-height: 1.5rem;
}

.night .demotimes ul li{
    border-bottom: 1px solid #444;
}

.demotimes ul li>span:nth-child(1){
    display: inline-block;
    width: calc(100% - 8.5rem);
    color: #05b672;
    font-size: 0.6rem;
}

.demotimes ul li>div{
    display: flex;
    align-items: center;
    gap: 8px;
    float: right;
    font-size: 0.5rem;
    width: 7.5rem;
}

.demotimes ul li>div span{
    font-size: 0.55rem; 
}

.demotimes ul li>div span i{
    color: #03A9F4;
    font-style: normal;
}

.progress-bar-bg{
    background-color: #e5e7eb;
    border-radius: 4px;
    height: 6px;
    width: 60px;
    overflow: hidden;
}

.night .progress-bar-bg{
    background-color: #444;
}

.progress-bar-fill{
    background-color: #05b672;
    height: 100%;
    border-radius: 4px;
}

/***************************************/

.docdiv{
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    border: 1px solid #eee;
    margin-top: 0.75rem;
    padding: 0.5rem;
    display: none;
}

.night .docdiv{
    border:1px solid #444;
}

.stat-item{
    background: #eff6ff;
    padding: 10px;
    border-radius: 3px;
    text-align: center;
}

.night .stat-item{
    background-color: #181a1b;
}

.stat-value{
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label{
    font-size: 0.6rem;
    margin-top: 0.25rem;
}

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