body {
    background-color: #1E1E1E;
    font-family: 'JetBrains Mono', monospace;
}

body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(img/button_press.png) url(img/button_nopress.png);
}

.header-main {
    background-color: white;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.header-main-title {
    padding-left: 20px;
}

.list {
    width: 100%;
    display: flex;
    flex-direction: row; 
    margin-top: 20px;
    margin-left: 20px;
    gap: 20px;
    justify-content: space-evenly;
}

.list-input {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 40%;
    box-sizing: border-box;
}

.list-input textarea {
    resize: none;
    width: 100%;
    background-color: white;
    min-height: 100px;
    padding: 14px;
}

.list-input button {
    width: 50px;
    height: 50px;
    background-image: url(img/button_press.png);
    background-size: 100% 100%;
    cursor: pointer;
    margin-left: auto;
}

.list-input button:hover {
    background-image: url(img/button_nopress.png);
}

.list-data {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.list-data-title {
    background: white
}

.list-data-container,
.todo {
    display: flex;
    flex-direction: column;
}

.todo {
    margin-top: 5px;
    padding: 14px; 
    border: 1px solid lightgray;
    border-radius: 4px;
    color: lightgray;
}

.btnContainer {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.iconBtn {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0 8px;
    display: grid;
    place-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.iconBtn:hover {
    background: rgb(242, 240, 240);
}