* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background-color: #232323;
    color: whitesmoke;
    height: 98%;
}

html {
    height: 100%;
}

h1,
h2,
h3 {
    color: #4cb050;
    margin: 10px;
}

p,
a,
label {
    color: whitesmoke;
    margin: 10px;
}

input {
    margin: 10px;
    position: center;
    background-color: #232323;
    color: whitesmoke;
    font-size: medium;
    padding: 10px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    border-color: whitesmoke;
}

input:focus {
    border-color: #4cb050;
    outline: none;
}

button {
    text-align: center;
    background-color: #4cb050;
    color: #232323;
    border: none;
    border-radius: 4px;
    padding: 10px;
    margin: 8px;
    font-size: medium;
}

.imageButton {
    padding: 5px;
}

button:active {
    background-color: #318f2f;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

footer {
    padding: 10px;
    z-index: 2;
}

.center-column {
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
}

.center-row {
    border: 1px solid black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: none;
}

.column-left {
    float: left;
    width: 20%;
}

.column-middle {
    float: left;
    width: 80%;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.invisible {
    visibility: hidden;
}

.inline {
    display: inline;
}

#loginContainer>p {
    max-width: 550px;
}

#loginButton {
    width: 15%;
    min-width: 125px;
}

#dataView {
    margin-top: 20px;
    height: 64%;
}

#map {
    width: 99%;
    height: 64%;
    position: absolute;
    z-index: 1;
}

.deviceInfo {
    width: 97%;
    padding: 1vw;
    margin-top: 2vw;
    background-color: #303030;
    border-radius: 5vw;
    border-color: #252525;
    display: none;
}

.prompt {
    background-color: #232323;
    border-style: solid;
    border-color: #4cb050;
    border-width: 1px;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0.9;
    transform: translate(-50%, -50%);
}

#imagePrompt {
    background-color: #232323;
    border-style: solid;
    border-color: #4cb050;
    border-width: 1px;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#imageFromDevice {
    width: 75%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown button {
    margin-bottom: 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #303030;
    z-index: 1;
}

.dropdown-content button {
    color: black;
    font-weight: bold;
    margin: 4px;
    padding: 1vh;
    width: 100%;
    display: block;
}

.margin-top {
    margin-top: 1vw;
}

.show {
    display: block;
}

.tooltip {
    position: relative;
    display: inline-block;
    color: whitesmoke;
    border-bottom: 2px dotted whitesmoke;
}


.tooltip .tooltiptext {
    visibility: hidden;
    width: 20vw;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    position: absolute;
    z-index: 1;
}

/* https://stackoverflow.com/a/61982880/11076036 */
.marker-selected {
    filter: hue-rotate(120deg);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

#f-droid-badge {
    width: 200px;
}

#commandlogs {
    margin: 20px;
    display: block;
    padding: 20px;
    line-height: 28px;
    white-space: pre-line;
}

#pushWarning {
    margin: 10px;
}

#pushWarning>p {
    color: #ff3333;
    margin: 0;
}

#pushWarning>p>a {
    color: #ff3333;
    margin: 0;
}