*{
    margin:0 ;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --background:#000430;
    --secondarybackground:#171c48;
    --text: #fff;
    --purple:#828dff;
    --teal:#24feee;
}

body {
    background-color: var(--background);
    color: var(--text);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 120px auto 0 auto;
    max-width: 500px;
}

.stats-container {
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--purple);
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

#details {
    width: 100%;
}
 
#progress {
    width: 0%;
    height: 10px;
    background-color: var(--teal);
    border-radius: 10px;
    transition: all 0.3s ease;

}

.progressBar {
    width: 100%;
    height: 10px;
    background-color: var(--secondarybackground);
    border-radius: 5px;
    margin-top: 20px;
}

#numbers {
    width: 100px;
    height: 100px;
    background-color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
}

form {
    margin-top: 60px;
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.task-input-full {
    width: 100%;
    padding: 16px;
    background-color: var(--secondarybackground);
    border: 1px solid var(--purple);
    border-radius: 10px;
    outline: none;
    color: var(--text);
}

.datetime-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 16px;
    background-color: var(--secondarybackground);
    border: 1px solid var(--purple);
    border-radius: 10px;
    outline: none;
    color: var(--text);
}

input[type="date"],
input[type="time"] {
    padding: 16px;
    background-color: var(--secondarybackground);
    border: 1px solid var(--purple);
    border-radius: 10px;
    outline: none;
    color: var(--text);
    color-scheme: dark;
    flex: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--purple);
    color: var(--text);
    font-size: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
}

.taskItem
{
    padding: 20px;
    background-color: var(--secondarybackground);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.task-list {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.task  {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--secondarybackground);
}

.task-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.task-content p {
    margin: 0;
}

.icons {
    display: flex;
    gap: 10px;
}

.taskItem img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.completed {
    text-decoration: line-through;
    opacity: 0.6;
    color: var(--teal);
}

.checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--teal);
}

.task-date-time {
    font-size: 0.85em;
    color: var(--teal);
    opacity: 0.8;
    margin-top: 2px;
}