:root {
    --color-spot: #ffca4a;
}


* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    /*background: #fffdeb;*/
    /*background: linear-gradient(#fff, #fff4b6) no-repeat fixed;*/
    background: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
}

.wrapper {
    width: 100%;
    max-width: 1024px;
    background: #fff;
    /*border: 1px solid #ccc;*/
    margin: 0 auto;
    box-shadow: 0 0 11px 4px rgba(0, 0, 0, 0.1);
    min-height: 100%;
    padding: 15px 20px;
}


.wrapper .header {
    display: flex;
    justify-content: space-between;
    min-height: 110px;
    padding: 1em 0;
}

.wrapper .header .right {
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.flex {
    display: flex;
    gap: 10px;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

h1:first-child {
    margin-top: 0;
}

h1:last-child {
    margin-bottom: 0;
}

h2:first-child {
    margin-top: 0;
}

h2:last-child {
    margin-bottom: 0;
}


.button {
    border: 1px solid #ccc;
    width: fit-content;
    padding: 0 10px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 3px 3px 5px -2px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-size: 16px;
}

.button:hover {
    /*box-shadow: none;*/
    box-shadow: 3px 3px 5px -2px var(--color-spot);
    border-color: var(--color-spot);
}


.note-frame {
    border-radius: 0;
}

.note-editor .note-toolbar .note-dropdown-menu, .note-popover .popover-content .note-dropdown-menu {
    min-width: 215px;
}