/* "My Lists" Section */
#content {
    margin-top: 0;
    width: 100%;
    height: 100%;
    background-color: #f58edd;
    padding: 5px;
    box-sizing: border-box;
    overflow-y: scroll;
    scrollbar-width: none;
}

#content::-webkit-scrollbar {
    display: none;
}

#taskheader {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Blank Div & Add Note Div */
.blankdiv, #addnotediv {
    height: 200px;
    width: 200px;
    margin: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blankdiv {
    background-color: #f58edd;
    border: none;
    padding: 20px;
}

#addnotediv {
    background-color: #ff3aa0;
    padding: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

#addnotediv:hover {
    background-color: #ff2067;
}

#addnotediv i {
    font-size: 90px;
    color: gainsboro;
}

/* List Container */
#listcont {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#tasks-list {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    text-align: center;
}

/* Individual List Item */
.list {
    width: 200px;
    height: 200px;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: #9f214b;
    box-shadow: 5px 5px 10px 5px #4f1b2c;
    color: #ffd8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.list:hover {
    box-shadow: 5px 5px 20px 5px #ff5db8;
}

.list span {
    font-size: 2em;
    margin-top: 30%;
    flex-grow: 1;
    overflow-y: scroll;
    word-wrap: break-word;
    scrollbar-width: none;
}

.list span::-webkit-scrollbar {
    display: none;
}

/* Buttons in Notes */
#editBtn, #deleteBtn {
    width: 60px;
    padding: 5px 20px;
    margin: 0 5px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s ease;
}

#editBtn {
    background-color: rgb(255, 39, 201);
}

#editBtn:hover {
    background-color: #ff8fea;
}

#deleteBtn {
    background-color: #ff6060;
}

#deleteBtn:hover {
    background-color: #75003b;
}

/* Popup */
#popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 550px;
    padding: 20px;
    background-color: rgb(255, 184, 244);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: scroll;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    scrollbar-width: none;
}

#popup-container::-webkit-scrollbar {
    display: none;
}

#btn-container {
    display: flex;
}

/* Submit & Close Buttons */
#submitBtn, #closeBtn {
    width: 150px;
    padding: 10px;
    margin: 10px;
    border: none;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-family: pine;
    font-weight: 100;
    transition: background-color 0.3s ease;
}

#submitBtn {
    background-color: #ff22b5;
}

#submitBtn:hover {
    background-color: #d51d94;
}

#closeBtn {
    background-color: rgb(58, 58, 58);
}

#closeBtn:hover {
    background-color: #333;
}
