.box{
    text-align: center;
    background-color: #e9f2fa;
    border: 1px dashed #b6d6f0;
    padding: 0.75rem 0;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

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

.box #showtime{
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 2.3rem;
}

.box #showtime span{
    width: 2.6rem;
    display: inline-block;
}

.box #showtime i{
    font-style: normal;
    vertical-align: 0.2rem;
}

.bnt{
    margin-top: 1rem;
    height: 2rem;
    line-height: 2rem;
}

.bnt button{
    height: 1.7rem;
    line-height: 1.7rem;
    background-color: #00b277;
    display: inline-block;
    color: #fff;
    padding: 0 1rem;
    border-radius: 3px;
    cursor: pointer;
    border: 0;
    margin: 0 0.75rem;
    font-size:0.7rem;
}

.bnt button:nth-child(2){
    background-color: #FF9800;
}

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

.log-section{
    background: rgba(10, 20, 32, 0.9);
    border-radius: 6px;
    padding: 0.75rem 0.75rem;
    color: #e4edf5;
    border: 1px solid #2e4b62;
}

.log-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.log-header span{
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    height: 1.3rem;
    line-height: 1.3rem;
}

.log-header button{
    background: none;
    border: 1px solid #55758b;
    color: #d2e3f0;
    padding: 0 0.75rem;
    height: 1.3rem;
    line-height: 1.3rem;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
}

.log-container{
    background: #0a121e;
    border-radius: 6px;
    padding: 0.5rem 0.5rem;
    max-height: 30rem;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid #2e4b62;
}

.log-container::-webkit-scrollbar {
    width: 4px;
}

.log-container::-webkit-scrollbar-track {
    background: transparent;
}

.log-container::-webkit-scrollbar-thumb {
    background-color: #94a3b8;
    border-radius: 6px;
}

.log-entry{
    padding: 0.3rem 0;
    color: #b3d6f0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.record-item{
    padding: 0.4rem 0 0.4rem 0.2rem;
    border-bottom: 1px solid #2d3a4f;
    color: #94a3b8;
}

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

@media screen and (max-width: 350px){
    .box #showtime{
        font-size: 1.8rem;
    }
    .box #showtime span {
        width: 2rem;
    }
}