.led {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    margin: 10px;
    position: relative;
    overflow: hidden; /* Ensure the pseudo-element stays within the circle */
}

.led::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 204, 0.6) 15%, transparent 30%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1) 70%);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    pointer-events: none; /* Allow interaction with the circle itself */
}

.running .led::after {
    content: '';
    width: 30px;
    background-image: url(../img/server.svg);
    display: block;
    background-size: 20px;
    height: 30px;
    z-index: 9;
    position: absolute;
    right: 0;
    bottom: 0;
    filter: invert(1);
    background-repeat: no-repeat;
    background-position: 50%;
}

.messaging .led::after {
    content: '';
    width: 30px;
    background-image: url(../img/message.svg);
    display: block;
    background-size: 20px;
    height: 30px;
    z-index: 9;
    position: absolute;
    right: 0;
    bottom: 0;
    filter: invert(1);
    background-repeat: no-repeat;
    background-position: 50%;
}

.red {
    background-color: #dc3528;
}

.yellow {
    background-color: #dfca0c;
}

.green {
    background-color: #01a501;
}

td img {
    width: 20px;
}

body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(circle at top left, white, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.8) 100%);
    /* Creates a vignette effect with white in the upper left corner */
}

main {
    position: relative;
    z-index: 1; /* Ensures the content is above the background */
    padding: 20px;
    color: white;
    height: 100%;
    width: 100%;
}
#localServer tbody {
    border: 1px solid #c8c8c8;
    background: #fff;
}
td.icon {
    padding-left: 10px;
}
td.server {
    font-family: monospace;
    font-weight: 400;
    color: #405763;
    vertical-align: middle;
    font-size: 18px;
    border-right: 1px solid #c8c8c8;
    padding-right: 10px
}

circle {
    transition: all 1s linear;
}
#c1{
    transition: all 1s linear;
    stroke: #DDDEDF;
    stroke-width: 3;
    stroke-linecap: round;
    fill: transparent;
}

#c2 {
    transition: all 1s linear;
    stroke: #545557;
    stroke-width: 3;
    stroke-linecap: round;
    fill: transparent;
}

#counterText {
    -webkit-animation: heartBeat 1s infinite;
    animation: heartBeat 1s infinite;
    filter: invert(0.8);
}

@-webkit-keyframes heartBeat {
    0%   {
        opacity: 0;
    }
    5%   {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes heartBeat {
    0%   {
        opacity: 0;
    }
    5%   {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.donut {
    width: 50px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 10px;
}

.responseContainer {
    white-space: pre-wrap; /* Preserve whitespace and line breaks */
    font-family: monospace; /* Monospace font for better readability */
    padding: 15px; /* Padding around the text */
    overflow-x: auto; /* Scroll horizontally if needed */
    border: 1px solid #bababa;
    color: #cccccc;
    background-color: #0c0c0c;
    width: 80%;
    height: 80%;
    font-size: 12px;
}

.no-select {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard syntax */
}

div#lastUpdated {
    position: absolute;
    bottom: 4px;
    right: 14px;
    color: inherit;
    filter: invert(1);
    font-family: monospace;
    font-size: 12px;
    z-index: 2;
    cursor: pointer;
}

.arrowUp{
    background-image: url(../img/arrow-outline-up.svg);
}
.arrowDown{
    background-image: url(../img/arrow-outline-down.svg);
}
.arrowRight{
    background-image: url(../img/arrow-outline-right.svg);
}
.arrowUp, .arrowDown, .arrowRight{
    content: '';
    width: 14px;
    height: 14px;
    background-size: 14px;
    position: relative;
    float: right;
    top: 26px;
    right: 11px;
}
#counterText{
    color: transparent!important;
    display: none!important;
}