body {
    background-color: #161819;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
}

main {
    padding: 40px;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    display: flex;
}

aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.aside-top {
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    margin-left: 280px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.clocks {
    display: flex;
    justify-content: space-between;
}

.timer {
    color: white;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 5px;
}

.timer-control {
    display: block;
}

.timer button {
    margin: 5px;
}

.time {
    margin-bottom: 5px;
}

.title-timer {
    color:#fab824;
}

.start {
    padding: 10px 30px;
    background-color: green;
    border: 0;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;

    &:hover {
        background-color: rgba(0, 128, 0, 0.765);
        cursor: pointer;
    }

    &:active {
        background-color: rgba(0, 128, 0, 0.565);
        cursor: pointer;
    }
}

.stop {
    padding: 10px 30px;
    background-color: red;
    border: 0;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;

    &:hover {
        background-color: rgba(255, 0, 0, 0.71);
        cursor: pointer;
    }

    &:active {
        background-color: rgba(255, 0, 0, 0.51);
        cursor: pointer;
    }
}

.reset {
    padding: 10px 30px;
    background-color: blue;
    border: 0;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;

    &:hover {
        background-color: rgba(0, 0, 255, 0.765);
        cursor: pointer;
    }

    &:active {
        background-color: rgba(0, 0, 255, 0.520);
        cursor: pointer;
    }
}

.to-do-list-container {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.to-do-list {
    max-width: 500px;
    padding: 10px;
    display: flex;
}

.to-do-title {
    color: white;
    max-width: 300px;
    padding: 10px;
    font-size: 32px;
    margin: 0;
}

.to-do-input {
    border: 0;
    border-radius: 5px;
    height: 30px;
    width: 300px;
}

.to-do-date-input {
    border: 0;
    border-radius: 5px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
}

.to-do-add-btn {
    border: 0;
    border-radius: 5px;
    background-color: white;
    font-size: 15px;
    padding: 5px;
    transition: 0.3s;

    &:hover {
        background-color: green;
    }

    &:active {
        background-color: rgba(0, 128, 0, 0.679);
    }
}

.tasks,
.completed-tasks {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 10px;
}

.task {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 98%;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.task-text {
    margin-right: 20px;
}

.checkbox {
    transform: scale(1.5);
    cursor: pointer;
}

.completed-tasks {
    text-decoration: line-through;
    opacity: 0.5;
}

.to-do-task-title {
    color: white;
    font-weight: bold;
    margin-left: 10px;
}

.delete-task-btn {
    font-weight: bold;
    border-radius: 5px;
    margin-left: 10px;
    padding: 10px;
    color: white;
    border: 0;
    background-color: red;
    transition: 0.3s;

    &:hover {
        background-color: rgba(255, 0, 0, 0.632);
    }

    &:active {
        background-color: rgba(255, 0, 0, 0.428);
    }
}