* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
    background-color: #4CABA6;
    background-size: auto;
}

.container{
    max-width: 1000px;
    margin: 0 auto;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel{
    background-color: #09A3DB;
    color: white;
    padding: 16px;
    margin: 16px;
    border-radius: 30px;
    height: 102px;
}

.activities{
    background-color: white;
}

button{
    width: 7%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.input{
    border: none;
    height: max-content;
    font-size: 18px;
	padding: 20px;
    border-radius: 14px;
	flex-grow: 1;
}

.input-panel{
    display: flex;
    height: max-content;
    gap: 8px;
    margin-top: 70px;
    padding: 20px;
}

.lista-vuota-text{
    text-align: center;
	font-weight: bold;
	font-size: 50px;
}

.todo-item{
    display: flex;
    align-items: center;
	background-color: white;
    list-style-type: none;
    margin: 16px;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 500;
}

.todo-check{
    background-color: rgb(217, 255, 102);
    padding: 20px;
    margin: 0 6px 0 0;
    border-radius: 16px 0 0 16px;
    cursor: pointer;
}

.resetAll{
    height: 70px;
    width: 200px;
    font-size: 26px;
    margin-top: 20px;
    margin-left: 75%;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    background-color: #d9ff66;
}

.empty-done-activities{
    text-align: center;
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 150px;
}

.done-activities{
    margin-left: 20px;
}

.done-item{
    display: flex;
    align-items: center;
	background-color: white;
    list-style-type: none;
    margin: 16px;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 500;
    text-decoration: line-through;
    color: rgba(31, 24, 24, 0.74);
}

.cestino{
    background-color: rgb(217, 255, 102);
    margin: 0 6px 0 0;
    padding: 7px;
    border-radius: 16px 0 0 16px;
    cursor: pointer;
}

.data-attivita{
    position: absolute;
    right: 3%;
    font-size: 20px;
}