/* For system status page */
.server_status_list {
    background-color: #ffffff;
    border-radius: 15px;
    min-height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /*overflow-y: scroll;*/
}

.server_status_list::-webkit-scrollbar {
    width: 8px;
}

.server_status_list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.server_status_list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
}

.server_item {
    width: 95%;
    background-color: #ffffff;
    margin: 20px;
    border-radius: 15px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

.s_i_floor_1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 60px;
}

.s_i_floor_1 img {
    aspect-ratio: 1 / 1;
    height: 80%;
    padding: 30px;
    border-radius: 40px;
}

.s_i_floor_1 h3 {
    padding: 30px;
}

.s_i_floor_1 h1 {
    margin-left: auto;
    padding: 30px;
}

.hosted_service_list {
    display: none;
    width: 100%;
    flex-direction: column;
}

.hosted_service_item {
    padding: 20px 10px 20px 20px;
    margin-right: auto;
    display: flex;
    width: 100%;
}

.hosted_service_item span {
    flex: 1;
    display: flex;
}

.hosted_service_item a {
    flex: 1;
    text-decoration: none;
    color: deepskyblue;
}

.hosted_service_item i {
    flex: 1;
    margin-right: auto;
}

.server_item {
    &.show_service_list {
        .hosted_service_list {
            display: flex;
        }
    }
}
