/*
 * darkest blue: #293241
 * dark blue: #3d5a80
 * medium blue: #98c1d9
 * light blue: #e0fbfc
 * red: #ee6c4d
 */

html {
    height: 99%;
}

body {
    width: 90%;
    height: 95%;
    margin: 0 auto;
    background: white;
    font-size: x-large;
    user-select: none;
    font-family: Helvetica;
    padding-top: 30px;
    color: #364559;
}

h1, h2, h3, h4 {
    margin-top: 10px;
    color: #3d5a80;
}

hr {
    color: #98c1d9;
}

a {
    z-index: 1;
    position: relative;
}

.note-list {
}

.note-card-flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.note-header {
    z-index: 1;
    position: relative;
}

.note-form {
    height: 80%;
}

.note-card-text {
    flex-basis: 60%;
    flex-grow: 4;
    max-width: 60%;
}

.edit-note-link {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.delete-note-form {
    display: inline-block;
    position: absolute;
    cursor: pointer;
    top: 50px;
    right: 60px;
}

.create-note-form {
    width: 100%;
}

.create-note-flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.create-note-textbox {
    all: unset;
    border-radius: 4rem;
    height: 40px;
    padding: 4px;
    padding-left: 25px;
    padding-right: 25px;
    background: #cfe0e1;
    box-sizing: border-box;
    color: #293241;
    font-family: Helvetica;
    flex-basis: 60%;
    flex-grow: 4;
    min-width: 0;
}

.button {
    all: unset;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    background: #ee6c4d;
    border-radius: 4rem;
    height: 40px;
    font-weight: bold;
    font-size: large;
    outline: none;
    color: white;
    margin-left: 8px;
    font-family: Helvetica;
    min-width: 100px;
    flex-basis: 100px;
    flex-grow: 0;
    line-height: 40px;
}

.note-header-flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.note-header-back {
    all: unset;
    color: #ee6c4d;
    font-size: 50px;
    display: inline-block;
    position: absolute;
    cursor: pointer;
}

.note-header-edit {
    all: unset;
    position: absolute;
    cursor: pointer;
    top: 100px;
    left: 0;
    bottom: 0;
    width: 100%;
}

.note-header-delete {
    all: unset;
    color: #ee6c4d;
    font-size: 25px;
    font-weight: medium;
    display: inline-block;
    position: absolute;
    cursor: pointer;
}

.note-header-title {
    display: inline-block;
    width: 100%;
    text-align: center;
}

::placeholder {
    color: #293241;
    opacity: 0.5;
}

.note-card {
    display: block;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    line-height: 52px;
    border: 2px solid #3d5a80;
    border-radius: 1rem;
    margin-bottom: 10px;
    padding: 4px;
    padding-left: 25px;
    padding-right: 25px;
    overflow: hidden;
    text-decoration: none;
    color: #293241;
    background: white;
}

.note-content-box {
    width: 94%;
    height: 100%;
    border: 2px solid #3d5a80;
    border-radius: 1rem;
    padding: 10px;
    font-size: large;
}

.note-rendered-content {
    font-size: large;
}
