body {
    font-family: sans-serif;
    background-color: #e5e5e5;
    /* background-color: red; */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
    width: 300px;
    height: 500px;
    border: 5px solid #abcea1;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    overflow-y: scroll;
}

/* to hide scroll bar */
.app::-webkit-scrollbar {
    width: 0 !important
}

#addNew {
    background-color: rgba(171, 206, 161, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.fa-plus {
    background-color: #abcea1;
    padding: 3px;
    border-radius: 3px;
}

#tasks {
    display: grid;
    gap: 14px;
}

#tasks div {
    background-color: #e2eede;
    border: 3px solid #abcea1;
    padding: 5px;
    border-radius: 6px;
    display: grid;
    gap: 4px;
}

.options {
    justify-self: center;
    display: flex;
    gap: 20px;
}

.options i {
    cursor: pointer;
}

#msg {
    color: red;
}

.brief {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brief i,
.brief input {
    cursor: pointer;
}

.icon {
    /* margin-right: 16px; */
    transition: transform 0.2s;
}

.icon.active {
    transform: rotate(-180deg);
}

/* .more {
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
} */
