#prompts{
    width: 100%;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    gap: 20px;
    position: relative;
}
#prompts textarea{
    width: 90%;
    height: calc(100% - 100px);
    background-color: transparent;
    color: white;
    padding: 10px;
    line-height: 1.5;
}

#prompts textarea:focus{
    outline: none;
}
#prompts #notes-list{
    height: 100%;
    background: #21212170;
    width: 25%;
}
#prompts #create-note{
    text-align: center;
    width: 100%;
    background: #2c8711;
    margin-top: 5px;
    cursor: pointer;
    height: 30px;
}
#notes-list h4{
    text-align: center;
}
#selected-note{
    height: 100%;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
}
#note-heading{
    margin-bottom: 15px;
    font-size: 18px;
    width: 100%;
    text-align: center;
}
#notes-ul{
    list-style: none;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    height: 80%;
}
#notes-ul li{
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    margin-right: 5px;
}
#save-note{
    background: green;
    margin-top: 10px;
    padding: 5px 30px;
    margin-bottom: 10px;
}
#prompts .delete-button:hover{
color: red;
}
#notes-ul li p{
    font-size: 13px;
    display: flex;
    flex-direction: column;
}
#notes-ul li span{
    font-size: 10px;
}
#notes-ul li p:hover{
    color: #7caf6c;
}
.quotes-container{
    width: 75%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: large;
}

#notemenu, #crossicon{
    display: none;
    height: 25px;
    filter: invert(1);
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 15px;
}
#crossicon{
    left: unset;
    right: 10px;
}
@media screen and (max-width: 850px) {
#notes-list{
    position: absolute;
    display: none;
}
#notemenu{
    display: block;
}
#prompts #notes-list{
    width: 40%;
    background-color: black;
}
#prompts textarea{
    min-height: 200px;
}
}