#notes{
    width: 100%;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    gap: 20px;
    position: relative;
}
#notes textarea{
    width: 90%;
    height: calc(100% - 100px);
    background-color: transparent;
    color: white;
    padding: 10px;
    line-height: 1.5;
}
#search-notes-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
    position: relative;
  }
  #search-notes {
    flex: 1;
    color: black;
    width: 100%;
    height: 30px;
    padding: 0 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
  }
  #clear-search {
    display: none;
    cursor: pointer;
    margin-right: 8px;
    font-size: 20px;
    position: absolute;
    z-index: 999;
    color: black;
    right: 0px;
  }
  #clear-search.visible {
    display: inline;
  }
#notes textarea:focus{
    outline: none;
}
#notes #notes-list{
    height: 100%;
    background: #21212170;
    width: 25%;
    display: flex;
    flex-direction: column;
}
/* #notes #create-note{
    text-align: center;
    width: 100%;
    background: #2c8711;
    margin-top: 5px;
    cursor: pointer;
    height: 30px;
} */
#notes-list h4{
    text-align: center;
    display: flex;
    justify-content: space-between;
    padding: 0px 10%;
    margin-top: 6px;
    margin-bottom: 10px;
}
#notes-list h4 img{
    width: 20px;
    height: 20px;
    margin-left: 5px;
    cursor: pointer;
    filter: invert();
}
#notes-list h4 img:hover{
    opacity: 0.7;
}
#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;
}
#notes .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;
}
#webophilia{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#webophilia .container{
    height: calc(100% - 80px);
    width: 100%;
    /* background-color: rgba(255, 0, 0, 0.173); */
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#webophilia a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
}

#webophilia a:hover{
    background-color: white;
    color: black;
    border-radius: 5px;
}
#notemenu, #crossicon{
    display: none;
    height: 25px;
    filter: invert(1);
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 15px;
}
#crossicon{
    left: unset;
    right: 10px;
}
#show-notes{
    width: 80%;
    margin: auto;
    background: green;
    border-radius: 30px;
    padding: 5px;
    margin-top: 10px;
}
@media screen and (max-width: 850px) {
#notes-list{
    position: absolute;
    display: none;
}
#notemenu{
    display: block;
}
#notes #notes-list{
    width: 40%;
    background-color: black;
}
#notes textarea{
    min-height: 200px;
}
}