.notes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.note {
    border: 1px solid darkgoldenrod;
    background-color: rgb(255, 255, 119);
    width: 300px;
    min-height: 200px;
    padding: 8px;

    position: relative;

    display: flex;
    flex-direction: column;
}

.note-id {
    background-color: darkorange;
    border-radius: 2px;
    font-size: 0.8em;
    position: absolute;
    top: 0;
    padding: 2px;
    right: 0;
    display: inline-block;
}

.note-title {
    font-size: 1em;
    color: black;
}

.note-body {
    color: rgb(36, 36, 36);

    flex-grow: 1;
}

textarea {
    background-color: transparent;
    border: none;
    resize: none;
    width: 100%;
    height: 100%;
    display: inline-block;
    max-height: 400px;
    font-family: sans-serif;
}
