html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    background-color: #ccc;
}

.container {
    padding-top: 10px;
    padding-bottom: 30px;
}

.overviewwrapper {
    padding: 20px;
}

.comment {
    max-width: 150px;
}

.email {
    max-width: 130px;
    overflow-x: scroll;
    text-wrap-mode: nowrap;
}

.red {
    font-weight: bold;
    color: #E00;
}

.blink {
    animation: blinker 1s step-start infinite;
}
  
@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

.green {
    color: #0A0;
}

#headline-icon {
    vertical-align: baseline;
    width: 20px;
    height: 20px;
}

#receiveddatainput {
    display: none;
}

#emailInput, #submitDate {
     display: none; /* Hide as spam protection */
}

#hashResult {
    display: none;
    font-weight: bold;
}

#inputForm {
    display: none;
    margin-bottom: 25px;
}

#comment {
    white-space: pre-line;
    min-height: 120px;
}

#incorrectHint {
    border-radius: 8px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

#pdfdownload {
    margin-bottom: 25px;
    cursor: pointer;
}

.supInput {
    width: 90px;
    margin-right: 5px;
    float: left;
}

.supForm {
    width: 100%;
}

.actions {
    width: 250px;
}

.alarm-titles-col {
    min-width: 250px;
}

.blue {
    color: #007cb0;
}

button.btn-primary,
button.btn-primary:hover,
button.btn-primary:active {
    background-color: #007cb0;
    border-color: #007cb0;
}

button.btn-primary:focus {
    background-color: #007cb0;
    border-color: #fff;
}

.scrollbox {
    overflow-x: scroll;
    width: 100%;
    font-size: .7em;
}

table {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
}

table .pvalue {
    font-family: 'Courier New', Courier, monospace;
}

th, td {
    padding: 0.5rem;
}

.collapsed-advice {
    color: grey;
    font-style: italic;
    display: none;
}


@media (min-width: 600px) { 

    #headline-icon {
        width: 26px;
        height: 26px;
    }

    .scrollbox {
        font-size: 1em;
    }

    .alarm-titles-col {
        min-width: 350px;
    }

}

@media (min-width: 800px) {
    .scrollbox {
        overflow-x: hidden;
    }
}

@media (min-width: 1200px) { 

    .scrollbox {
        overflow-x: hidden;
    }

    #headline-icon {
        width: 28px;
        height: 28px;
    }
}
