#stickyNoteArea {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background-color: black;
    z-index: 10000;


    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 3px solid #555;
}

#stickyNoteAreaHeader {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}

#stickyNoteAreaHeaderLeft {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 50%;
}

#stickyNoteAreaHeaderRight {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 50%;
}

.add-sticky-note-button {
    cursor: pointer;
    color: #808080;
    margin-left: 5px;
    margin-top: 5px;
}

.add-sticky-note-button:hover {
    color: white;
}

#closeStickyNotesButton {
    cursor: pointer;
    color: #808080;
    margin-left: auto;
    margin-top: 5px;
    margin-right: 6px;
}


.sticky-note {
    background-color: #030303;
    border: 3px solid #555;
    border-radius: 5px;
    height: 250px;
    width: 175px;
    /* position this note relative to the fixed element it's inside of */
    position: absolute;
    left: -196px;
    top: -3px;

    /* big white text */
    color: #ffffff;
    font-size: 16px;

    z-index: 0;

    /* box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5); */

}

.sticky-note-body {
    /* sticky note fix for scroll bar extruding out bottom of sticky note */
    height: 87%;
    width: 100%;
}

.sticky-note-text {
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: black;
    resize: none;
    outline: none;
}

.sticky-note-header {
    width: 100%;
    height: 30px;
    cursor: pointer;
}
