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

body {
    background-color: #393d4d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.topic {
    display: flex;
    flex-direction: column;
}

.toDoList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Calender {
    display: flex;
    margin: 10px 0px 5px 5px;
    font-size: large;
}

.Calender i {
    margin-right: 5px;
    padding: 0%;
    color: white;
}

.dateTime {
    color: white;
}

.hide {
    display: none;
}

.msg {
    margin: 30px;
    border-radius: 7px;
    width: 90vw;
    max-width: 600px;
    height: auto;
    text-align: center;
    background-color: #fff3cd;
    color: #4b4b4b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 30px;
    font-family: cursive;
    padding: 10px;
}

.box {
    background: linear-gradient(135deg, #005d5b, #a6d3c8);
    border-radius: 15px;
    width: 90vw;
    max-width: 600px;
    height: auto;
    padding: 30px;
}

h1 {
    color: white;
}

.category {
    background-color: #f0b869;
    color: white;
    border-radius: 7px;
    border: none;
    width: 110px;
    height: 40px;
    font-size: large;
    appearance: none;
    text-align: center;
    margin-top: -20px !important;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.container {
    background-color: #d2ece7;
    border-radius: 10px;
    padding: 9px 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.task-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

input {
    background-color: #5e9c98;
    border-radius: 10px;
    border: none;
    padding: 10px;
    width: 70%;
    color: white;
    font-size: 16px;
}

#Text:focus {
    outline: 2px solid olivedrab;
}

input::placeholder {
    color: white;
    font-size: large;
}

.AddTask {
    background-color: #f0b869;
    color: white;
    border-radius: 7px;
    border: none;
    padding: 10px 20px;
    font-size: large;
    width: 25%;
    min-width: 100px;
}

.taskBox {
    background-color: #e9e1ce;
    border-radius: 15px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

#tasklist div input[type="checkbox"] {
    margin: 0 15px;
    width: 22px;
    height: 22px;
    accent-color: #3e5a53;
}

.taskitem {
    font-size: 22px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #3e5a53;
    flex: 1;
}

.taskcategory {
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #3e5a53;
    margin-right: 15px;
}

.fa-solid {
    padding-right: 15px;
}

.newlist {
    background-color: #2d3748;
    color: white;
    height: 50%;
    width: 30%;
    padding: 10px;
    margin: 30px;
    border-radius: 10px;
    font-size: 30px;
}