@import url("/fonts/publicsans/publicsans.css");
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden;
    font-family: "Public Sans", sans-serif;
}

.box {
    display: flex;
    flex-flow: column;
    height: 100vh;
}

.departures-header {
    flex: 0 0;
    font-weight: bold;
    padding: 20px;
    background-color: #c0d101;
    color: white;
}

.disclaimer {
    font-size: 2vw;
    font-weight: normal;
    color: black;
}
.donate {
    float: right;
}

.table-container {
    overflow-y: auto;
    flex: 1 0;
}

.loading img {
    width: 1.5em;
    background-color: red;

    border-width: 1px;
    border-radius: 5px;
    border-color: black;
    border-style: solid;
}

.floating-button {
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    width: min(20vw, 10vh);
    height: min(20vw, 10vh);
    bottom: 2vh;
    right: 2vw;

    font-size: 8vw;
    border-width: 3px;
    border-radius: 20px;
    border-color: black;
    border-style: solid;
    outline: none;

    opacity: 0.7;
}

.floating-button img {
    width: min(18vw, 9vh);
    height: min(18vw, 9vh);;
}

.floating-button.start {
    opacity: 1;
    background-color: red;
}

.floating-button:hover {
    opacity: 1;
}

.floating-button.start:hover {
    background-color: orangered;
}
.floating-button:active {
    opacity: 1;
    background-color: white;
}

* {
    font-size: 4vw;
}

table.departure-table {
    font-size: 4vw !important;
}
