﻿* {
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
    overflow-x: auto;
    width: 100%;
}

html,
textarea,
input,
select {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

label {
    padding-left: 8px;
}

.CalendarEvent {
    border: 1px solid #444;
}

.ItemRed {
    background: linear-gradient(155deg, #d00000 35%,#a00000 100%);
    color: #fff;
}

.ItemYellow {
    background: linear-gradient(155deg, #FFDE5E 35%, #D3AA04 100%);
    color: #000;
}

.ItemCyan {
    background: linear-gradient(155deg, #04B6E2 35%, #037896 100%);
    color: #fff;
}

.ItemPurpule {
    background: linear-gradient(155deg, #9406E0 35%, #640384 100%);
    color: #fff;
}

.ItemGreen {
    background: linear-gradient(155deg, #01B242 35%, #128900 100%);
    color: #fff;
}

.ItemBlack {
    background: linear-gradient(155deg, #444444 35%, #000000 100%);
    color: #fff;
}

.ItemBlue {
    background: linear-gradient(155deg, #1806DB 35%, #1E1C82 100%);
    color: #fff;
}

.ItemOrange {
    background: linear-gradient(155deg, #EF7C23 35%, #BC551A 100%);
    color: #fff;
}

.ItemPink {
    background: linear-gradient(155deg, #E87FBA 35%, #BA6081 100%);
    color: #fff;
}

.ItemBrown {
    background: linear-gradient(155deg, #9E582D 35%, #6B2A00 100%);
    color: #fff;
}

.ItemDisabled {
    background: linear-gradient(155deg, #ccc 35%, #fafafa 100%);
    color: #888;
    border-width: 0px;
}

.ItemNew,
.StickyNotesList .ItemNew {
    background: #fff;
    color: #000;
    border: 2px dashed #666;
    box-shadow: none;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}