@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,700;1,700&display=swap');

body, html {
    background: #24272e;
    color: #c7cad3;
    font-family: "IBM Plex Sans", sans-serif;
}

main {
    max-width: 750px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.status {
    display: block;
    padding: 20px 40px;
    max-width: 100%;
    background: #2f333c;
    border: 1px solid #454b58;
    border-radius: 6px;
    text-align: center;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 700;
}

.status.green {
    background: #389478;
    border-color: #46b996;
}

.status.red {
    background: #a73f5f;
    border-color: #c05979;
}

.status.yellow {
    background: #b99646;
    border-color: #c7ab6b;
}

.status.blue {
    background: #4669b9;
    border-color: #6b87c7;
}

.section {
    margin-top: 50px;
    padding: 0px 20px;
}

.section-title {
    max-width: 100%;
    display: block;
    font-size: 24px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #454F59;
}

.alert {
    max-width: 100%;
    display: block;
    background: #454F59;
    border: 1px solid #738496;
    border-radius: 4px;
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
}

.alert.green {
    background: #389478;
    border-color: #46b996;
}

.alert.red {
    background: #a73f5f;
    border-color: #c05979;
}

.alert.blue {
    background: #4669b9;
    border-color: #6b87c7;
}

.alert.yellow {
    background: #b99646;
    border-color: #c7ab6b;
}

table {
    margin-top: 20px;
    margin-bottom: 40px;
}

td {
    padding: 1px;
}

td:first-child {
    font-weight: bold;
    padding: 1px 20px 1px 1px;
}

.button {
    background: #2f333c;
    border: 1px solid #4669b9;
    border-radius: 4px;
    margin-right: 6px;
    color: #b9bdc8;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 20px;
    transition-duration: 0.1s;
}

.button:hover {
    color: white;
    background: #4669b9;
    border-color: #6b87c7;
}



.loader {
    cursor: default;
}

.loader span {
    animation: pulse 1s linear infinite;
    opacity: 0;
}

@keyframes pulse {
    40% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
}



.offline-message {
    padding: 0px 20px;
    margin-top: 10px;
    text-align: center;
}



.hidden {
    display: none;
}



.spacer100 {
    height: 100px;
    padding: 0;
    margin: 0;
}















@media screen and (max-width: 600px) {
    main {
        margin-top: 10px;
    }
}












































