body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    text-align: center;
}
h1 {
    color: #333;
}
a {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
a:hover {
    background-color: #555;
}

.navbar {
    width: 100%;
    height: 15%;
    background-color: #fff;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 8px;
    margin-bottom: 30px;
    padding-top: 2%;
    padding-bottom: 2%;
}

.navbar > a {
    margin: 3px;
    padding: 1%;
    background-color: #ccc;
    color: black;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 15%;
}

.navbar > .current-page {
    text-decoration-line: underline;
}

section {
    margin: auto;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.perfect-overall-status {
    background-color: rgba(0, 128, 0, 0.2);
}

.light-issues-overall-status {
    background-color: rgba(255, 255, 0, 0.2);
}

.partial-outage-overall-status {
    background-color: rgba(255, 128, 0, 0.2)
}

.full-outage-overall-status {
    background-color: rgba(255, 0, 0, 0.2);
}

.hosts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.hosts > div {
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.hosts > div > div {
    font-weight: bold;
    margin: auto;
    padding: 5px;
    border-radius: 8px;
    width: 60%;
}

.hosts > .main-host > h2 {
    text-decoration-line: underline;
}

.hosts > div > .reachable {
    background-color: rgba(0, 128, 0, 0.5);
}

.hosts > div > .partial-load-failures {
    background-color: rgba(255, 255, 0, 0.5);
}

.hosts > div > .restarting {
    background-color: rgba(255, 255, 0, 0.5);
}

.hosts > div > .unknown {
    background-color: rgba(255, 128, 0, 0.5)
}

.hosts > div > .unreachable {
    background-color: rgba(255, 0, 0, 0.5);
}

.commands-list-wrapper {
    margin: auto;
    padding: 4px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.commands-list-wrapper .hidden {
    display: none !important;
}

.commands-list-wrapper > .commands-search-bar {
    width: 90%;
    height: 5%;
    background-color: #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: auto;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-bottom: 2%;
}

.commands-list-wrapper > .commands-search-bar > input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.commands-list-wrapper > .main-commands-list {
    width: 100%;
    height: 60vh;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    background-color: #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.commands-list-wrapper > .main-commands-list > div {
    width: 90%;
    height: fit-content;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
}

.commands-list-wrapper > .main-commands-list > div > div {
    width: 90%;
    height: 23%;
    background-color: #eee;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: .5%;
    overflow-y: auto;
}

.commands-list-wrapper > .commands-sections-switcher {
    width: 90%;
    height: 10%;
    background-color: #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow-x: auto;
    border-radius: 8px;
    margin: auto;
    padding-top: .5%;
    padding-bottom: .5%;
    margin-top: 2%;
}

.commands-list-wrapper > .commands-sections-switcher > div {
    margin: 3px;
    padding: .25%;
    background-color: #ddd;
    color: black;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 15%;
}

.commands-list-wrapper > .commands-sections-switcher > .selected {
    text-decoration-line: underline;
}
