/*Server CSS*/

.infra-status {
    max-width: 80%;
    margin: 0px auto auto auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.2);
}

.infra-status h2 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
}

.service {
    margin-bottom: 15px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: #eeeeee;
}

.status-dot.online {
    background-color: #28a745; /* online */
}

.status-dot.offline {
    background-color: #dc3545; /* offline */
}