html {
    overflow-x: hidden;
    touch-action: pan-y; 
}
.mdiv{
    display: flex;
}

.mlf{
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}

.breathing-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.inner-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.5s ease;
    color: #fff;
}

.instruction{
    margin-top: 2.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.mlr{
    width:20rem;
    padding-left: 0.75rem;
}

.mlr>div{
    padding: 0.25rem;
    border: 1px solid #e8e8fd;
    margin-bottom: 0.75rem;
    border-radius: 4px;
}

.night .mlr>div{
    border:1px solid #444;
}

.mlf{
    width:calc(100% - 20rem);
    height: 19rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: 1px solid #e8e8fd;
}

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

.butdivbut{
    height: 1.8rem;
    line-height: 1.8rem;
    display: block;
    background-color: #06b672;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.layui-colorpicker{
    border-top: 0;
    border-bottom: 0;
    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
    border-right: 0;
}

.night .layui-colorpicker{
    border: 1px solid #444;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    background-color: #181a1b;
}

@media screen and (max-width: 1290px){
    .mdiv {
        display:block;
    }
    .mlf {
        width:100%;
        height: 16rem;
    }
    .mlr {
        width: 100%;
        padding-left:0rem;
        margin-top: 0.75rem;
    }
}