* {
    user-select: none;
    cursor: default;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    color: #c1c6cb;
    background: 
        linear-gradient(rgba(21, 32, 46, 0.98), rgba(21, 32, 46, 0.98)),
        url('https://www.ali-azad.com/assets/img/myavatar.png') center/30% no-repeat fixed;
}

body {
    padding: 20px 50px;
    font-family: 'Lato', sans-serif;
}

body::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #110d0d;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

.dashboard {
    display: block;
    max-width: 1024px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.dashboard-title {
    flex: 1;
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
}

.dashboard-clock {
    display: flex;
    align-items: center;
}

.dashboard-clock-digital {
    font-weight: bold;
    font-size: 2.5rem;
    color: #54c6fb;
}

.dashboard-clock-binary {
    margin-left: 8px;
    border-collapse: separate;
}

.dashboard-clock-binary td {
    height: 0.4rem;
    width: 0.4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.dashboard-clock-binary .num1 {
    background-color: #2eb35a;
}

.server {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.server-icon {
    display: inline-block;
    font-size: 2.5rem;
    margin: 0 2rem;
    color: #54c6fb;
}

.server-details {
    flex: 1;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.server-details li {
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #7e8794;
}

.server-details li:last-child .data {
    font-weight: normal;
    color: rgba(230, 245, 255, 0.32);
}

.data {
    display: block;
    margin: -1.7rem 0 0 0;
    padding: 0 1rem 0 0;
    font-weight: 600;
    text-align: right;
    color: #c1c6cb;
}

.signal {
    color: #2eb35a;
}

.signal::before {
    content: '';
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 0.5rem;
    margin-top: -0.2rem;
    vertical-align: middle;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    grid-gap: 2rem;
}

.has-failed {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #d22c32;
    animation: alertblink 2s ease-in-out infinite;
}

.has-failed .server-icon,
.has-failed .signal {
    color: #d22c32;
}

.has-failed:hover {
    background-color: rgba(210, 44, 50, 0.2);
    animation: none;
}

@keyframes alertblink {
    0% {
        background: rgba(210, 44, 50, 0);
    }
    50% {
        background: rgba(210, 44, 50, 0.2);
    }
    100% {
        background: rgba(210, 44, 50, 0);
    }
}

.server-stats{
    font-size:15px;
}
.server-stats .total{
    color:#00ff00;
}
.server-stats .stat-item:nth-child(1){
    color:#eeff00;
}
.server-stats .stat-item:nth-child(2){
    color:#51b8ff;
}
.server-stats .stat-item:nth-child(3){
    color:#ff9d51;
}