* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-size: 15px; */
    /* color: #000; */
    white-space: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#container {
    padding: 2% 2% 2% 2%;
    background-image: linear-gradient(to right, #eee, rgb(215, 247, 200));
    /* background-image: url('../images/beach.jpg'); */
    background-size: cover;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: auto;
}


button.menu_button {
    margin: 10px;
    padding: 5px;
    display: inline;
    /* height: 90px;
    width: 90px;
    border-radius: 50%;
    background-image: url('../images/button.png');
    background-repeat: no-repeat; */
}

#popup, #calendar_poup, #add_event_note_popup {
    display: none;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    /* padding: 40px; */
    background: linear-gradient(to left, #99f, #00f);
    font-size: 10px;
    text-align: center;
    border-radius: 5%;
    z-index: 200;
}


sticky {
    z-index: 100;
}

#status {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 18px;
    color: #fff;
    background-color: #0066ff;
    z-index: 1;
}

button {
    font-size: large;
    padding: 3px;
    margin: 3px;
}

button:hover {
    background-color: blue;
    color: white;
}

button#close_popup {
    margin: 30px;
    font-size: 1.5em;
}

a.die {
    text-decoration: underline;
}

.menu_item {
    font-size: 2em;
    color: #ddd;
}

a:hover, .menu_item:hover {
    background-color: blue;
    color: white;
}

#logo {
    padding: 10px;
    width: 150px;
    height: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
}

.message_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* grid-template-rows: repeat(5, 1fr); */
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: right;
}

/* .grid > div {
    border: solid 1px blue;
} */

.title {
    color: blue;
}

#ratings_description td {
    vertical-align: top;
    border: solid 1px pink;
}

#ratings_description ul {
    padding-left: 20px;
}

#rating_description {
    border: solid 1px green;
    border-radius: 15px;
    padding: 5px;
    white-space: nowrap;
    background-color: rgb(232, 232, 173);
}

#rating_description:hover {
    color: white;
    background-color: blue;
}

#status a {
    color: white;
}

thead {
    position: sticky;
    top: 0px;
    z-index: 100;
}

#popup hr {
    color: white;
    opacity: .2;
}

.align_center {
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

#footer_right {
    position: fixed;
    right: 5px;
}

#footer_left {
    position: fixed;
    left: 5px;
}

.uitooltip {
    padding: 8px;
    background: yellow;
    position: absolute;
    z-index: 9999;
    max-width: 1000px;
    box-shadow: 0 0 50px #aaa;
    white-space: pre-line;
}

.ui-helper-hidden-accessible {
    display: none;
}

.warning {
    background-color: red;
    color: white;
    font-weight: bold;
}

input:valid {
    background-color: #ddffdd;
}

input:invalid {
    background-color: #fea7bc;
}

.editable_content {
    /* border: solid 1px blue; */
    border-radius: 5px;
    padding: 2px;
    font-size: 1em;
    background-color: #e9fbfb;
    color: blue;
    /* min-height: 1.5em; */
}

#header {
    /* background-color: #0066ff; */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    padding: 5px 50px 5px 5px;
    text-align: right;
}