.app{
    width:100%;
    padding:20px;
    box-sizing:border-box;
}


.header,
.content,


.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fafcfb;

    padding:15px 20px;

    border-radius:20px;

margin-bottom:15px;

}

.content{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    width:100%;
    padding-bottom:30px;
}

.timer-panel,
.tasks-panel{

    min-width:0;
}

.timer-panel,
.tasks-panel{

    background:white;

    border-radius:20px;

    padding:15px;

    box-sizing:border-box;

    height:auto;
}

.assistant-panel{

    background:white;

    border-radius:20px;

    padding:20px;

    min-height:90px;

    display:flex;

    align-items:center;
}



.tasks-panel{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    width:100%;
}

.logo{

    font-family:'digital-7', monospace;

    font-size:38px;

    font-weight:normal;

    color:#222;

    letter-spacing:1px;
}

.settings-btn{

    background:transparent;

    border:none;

    font-size:24px;

    cursor:pointer;

    transition:.25s;
}

.settings-btn:hover{

    transform:scale(1.25);
}

.task-list{

    list-style:none;

    padding:0;

    margin:0;

    flex:1;
}

.task-list li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px;

    margin-bottom:10px;

    border-radius:12px;

    background:#f2f2f2;
}

.task-list li.active{

    background:#67c8ff;

    color:white;
}

.task-name{

    font-weight:500;
}

.task-time{

    font-weight:600;

    opacity:.9;
}

.new-task-btn{

    width:100%;

    padding:12px;

    border:none;

    border-radius:12px;

    background:#67c8ff;

    color:white;

    cursor:pointer;

    margin-top:25px;
}

.timer-container{

    display:flex;

    flex-direction:column;

    align-items:center;

    width:100%;
}

.timer-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:15px;
}

.timer-actions button{
    border:none;
    border-radius:50%;
    background:transparent;
    padding:0;
    box-shadow:none;
    cursor:pointer;
}

.timer-actions button:hover{

    transform:scale(1.08);
}

.assistant-panel{

    width:100%;

    min-height:80px;

    max-height:100px;

    display:flex;

    align-items:center;

    box-sizing:border-box;
}

.action-btn{

    background:transparent !important;

    border:none;

    box-shadow:none;
}

.action-btn img{
    width:75px;
    height:75px;
    background:transparent;
}

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.weather-widget{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-width:100px;
}

.weather-top{
    font-size:18px;
    font-weight:600;
    color:#444;
}

.weather-bottom{
    font-size:11px;
    color:#777;
}

.header-clock{
    font-family:'digital-7', monospace;
    font-size:38px;
    color:#666;
    line-height:1.05;
    letter-spacing:2px;
    letter-spacing:1px;
}

.logo-container{
    display:flex;
    align-items:flex-start;
    gap:0;
}


.task-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.task-edit,
.task-done,
.task-delete{
    cursor:pointer;
    font-size:15px;
}

.task-edit:hover,
.task-done:hover,
.task-delete:hover{
    transform:scale(1.15);
}
.timer-panel{

    background:#fafcfb;

    border-radius:20px;

    padding-top:50px;
    padding-right:15px;
    padding-bottom:15px;
    padding-left:15px;

    box-sizing:border-box;

    width:100%;

    max-width:900px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

}

body{
    overflow-x:hidden;
}

.app{
    overflow-x:hidden;
}

html,
body{
    overflow-x:hidden;
}

.timer-panel{

    overflow-y:auto;

}

html,
body{
    overflow-x:hidden;
}

.app{
    overflow-x:hidden;
}

.timer-panel{
    overflow-x:hidden;
}
