body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: darkgrey;
    color: black;
}
select {
    border-width: 1px;
    border-color: rgb(181, 180, 180);
    color: grey;
    background-color: #fefefe;
    font-size: 14px;
}
input[type="number"] {
    width: 60px;
    height: 16px;
    background-color: #f0f0f0;
    border-width: 1px;
    border-color: rgb(181, 180, 180);
    padding: 2px;
    color: grey;
    font-size: 14px;
    font-weight: bold;
}
.input-seats[type="number"] {
    width: 100px;
    height: 24px;
    border-style: none;
    padding: 2px;
    color: black;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
/* *-------- --------------------------------------*/
/* *--------                windows/containers   --*/
/* *-------- --------------------------------------*/
.draggable-window {
    background-color: white;
    border-radius: 4px;
    border-style: solid;
    border: 2px 1px 1px 1px;
    border-color: #c0c0c0;
    -webkit-box-shadow: 3px 4px 3px 0px #000000;
    box-shadow: 3px 4px 3px 0px #000000;
}
.draggable-window-titlebar {
    background-color: #00529c;
    font-size: 16px;
    text-align: center;
    color: white;
}
.bordered-pane {
    background-color: #f0f0f0;
    border-style: solid;
    border-width: 1px;
    border-color: #c0c0c0;
}
.top-panel {
    background-color: white;
    border-style: solid;
    border-color: #a0a0a0;
    border-width: 0px 0px 1px 0px;
}
.display {
    background-color: #f0f0f0;
    border-style: solid;
    border-color: black;
    border-width: 1px 1px 1px 1px;
}
.unit-display {
    background-color: white;
    border-style: solid;
    border-width: 2px;
    border-color: lightblue;
}
.year-div {
    background-color: #f0f0f5;
    border-style: none;
    border-color: black;
    border-width: 1px 1px 0px 1px;
}
/* *-------- --------------------------------------*/
/* *--------                 BUTTONS             --*/
/* *-------- --------------------------------------*/
.icon-button {
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    border-width: 0px;
    outline: none;
    transition: 0.25s;
}
.icon-button:hover {
    background-color: cornsilk;
}
.icon-button:active {
    transform: translateY(3px);
}
.standard-button {
    width: 120px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 2px 2px 1px 0px #00000080;
    box-shadow: 2px 2px 1px 0px #00000080;
    color: #00529c;
    font-size: 13px;
    border-width: 1px;
    cursor: pointer;
}
.standard-button:hover {
    background-color: #bfdfd7;
    font-weight: bold;
    border-width: 2px;
}
.standard-button:active {
    transform: translateY(3px);
}
/* *-------- --------------------------------------*/
/* *--------                 Text/Labels        --*/
/* *-------- --------------------------------------*/
.tooltip {
    font-size: 14px;
    color: black;
}

.lbl-topbar-tooltip {
    font-size: 12px;
    color: #474d56;
    font-weight: bold;
}
.small-title {
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.med-title {
    color: black;
    font-size: 16px;
    font-weight: bold;
}
.large-title {
    color: black;
    font-size: 24px;
    font-weight: bold;
}
.std-label {
    color: #474d56;
    font-size: 14px;
}
.small-label {
    color: #474d56;
    font-size: 8px;
}
/* *-------- --------------------------------------*/
/* *--------                menued window        --*/
/* *-------- --------------------------------------*/
.sidemenu {
    background-color: transparent;
    width: 120;
    height: 24;
    border-width: 0px;
    outline: none;
    font-size: 13px;
    font-weight: bold;
    color: grey;
    transition: 0.25s;
    text-align: left;
}
.sidemenu:hover {
    transform: scale(1.1);
}
.sidemenu:active {
    transform: translateY(3px);
}
.sidemenu-selected {
    background-color: transparent;
    width: 120;
    height: 24;
    border-width: 0px;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    color: black;
    transition: 0.25s;
    text-align: left;
}
.sidemenu-selected:hover {
    transform: scale(1.1);
}
.sidemenu-selected:active {
    transform: translateY(3px);
}
