* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Rubik, sans-serif;
    color: #0A0040;
}


body{
    width: 100vw;
    height: 100vw;
    background-color: white;
}


.container{
    width: 100vw;
    height: 100vw;
    display: flex;
}


.sidebar{
    width: 100px;
    background-color:  #6143ff;
}

.sidebar img{
    max-width: 100%;
}

nav{
    width: calc(100vw - 100px);
    height: 100px;
    background-color: #F0F2FA;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

.btn{
    padding: 20px 30px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    border: 0;
    cursor: pointer;
}

.btn:hover{
    transform: scale(1.05);
}

a.btn{
    text-decoration: none;
    margin-left: 10px;
}

.btn-primary{
    background-color:  #6143ff;
    color: white;
}

main{
    display: flex;
    padding: 0px;
}

section.graph{
    width: 33%;
    padding: 20px 0px 20px 20px;
}

.graph-header{
    display: flex;
    align-items: center;
}

.graph-header h3{
    display: inline-block;
    flex: 1;


}

.graph-header--line{
    width: 100px;
    background-color: rgba(0, 0, 0, 0.2);
    height: 2px;
    flex: 1;
}

.graph-header--date{
    flex: 1;
    justify-content: center;
    font-size: 10px;
    display: flex;
    align-items: center;

}

.graph-subtitle{
    margin-top: 10px;
}

.graph-placehold{
    background-color: #CCCCCC;
    width: 300px;
    height: 300px;
    margin-top: 60px;
    margin-left: 50px;
    background: url(/assets/images/graph.png);
    background-size: contain;
}

.graph-task{
    text-align: center;
    margin-top: 10px;

}

.list{
    padding: 20px 20px 20px 0px;
    flex: 1;
}

.list-header{
    display: flex;
}

.list-header--select{
    display: flex;
}

.list-task{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;

}

.list-task .task{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 15px;
    margin-bottom: 10px;
    border-bottom: 3px solid #F0F2FA ;
    transition: all .3s ease-in-out;
}

.list-task .task:hover{
    transform: scale(1.05);
    border-radius: 10px;
    overflow: hidden;
    background-color: #F0F2FA;
}

.list-task .task .task-title,
.list-task .task .task-priority,
.list-task .task .task-actions
{
    display: flex;
    flex: 1;
    align-items: center;
}

.list-task .task .task-actions
{
   justify-content: flex-end;
}

.list-task .task .task-actions a
{
   margin-left: 20px;
   margin-right: 10px;
   transition: all .3s ease-in-out;
}

.task-actions a:hover{
    transform: scale(1.5);

}

.task_title{
    padding-left: 5px;
    font-weight: bold;
}

.sphere{
    width: 22px;
    height: 22px;
    background-color: red;
    border-radius: 50%;
    margin-right: 15px;
}

.tasks-left-footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#task-section
{
    margin: auto;
    padding-top: 20px;

}

#task-section h1
{
    text-align: center;
    margin-bottom: 20px;
}

.input-area{
    display: block;
    margin: 10px 0 20px 0;
}
.input-area>label{
    display: block;
    margin-left: 5px;
}

.input-area>input, .input-area>select{
    height: 40px;
    width: 400px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.input-area>textarea{
    width: 400px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.alert{
    font-size: bolder;
}

.alert-error{
    color: red;
}
