
body{
    background:#000;
}
.left-sidebar-grid {
    display:grid;
    grid-template-areas:
    'header'
    'main-content';
    grid-template-rows:auto 1fr auto;
    grid-template-columns:100%;
    min-height:100vh;
    min-height:100svh;
}
.left-sidebar-grid > * {
    padding:1rem;
}
.left-sidebar-grid > .header {
    grid-area:header;
    background:#000;
    position: sticky;
    top: 0;
    z-index: 1;
    height: 72px; 
}
.left-sidebar-grid > .main-content {
    grid-area:main-content;
    background:#fff;
    height: 100%;                   
}
.left-sidebar-grid > .footer {
    grid-area:footer;
    background:#000;                
    position: sticky;
    bottom: 0;
    z-index: 1;
    height: 16px; 
}
@media (min-width:768px) {
    .left-sidebar-grid {
        grid-template-columns:repeat(3, 1fr);
        grid-template-areas:
        'header header header'
        'main-content main-content main-content';
    }
}
.image-button {
    display:inline-block;
    border: none;
    outline: none;
    position: relative;
    margin-right:10px;
    z-index: 0;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    touch-action: manipulation;
}

.image-button:before {
content: "";
background: linear-gradient(
  45deg,
  #ff0000,
  #ff7300,
  #fffb00,
  #48ff00,
  #00ffd5,
  #002bff,
  #7a00ff,
  #ff00c8,
  #ff0000
);
position: absolute;
top: -2px;
left: -2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
-webkit-filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing-button-85 20s linear infinite;
transition: opacity 0.3s ease-in-out;
border-radius: 50%;
}

@keyframes glowing-button-85 {
0% {
  background-position: 0 0;
}
50% {
  background-position: 400% 0;
}
100% {
  background-position: 0 0;
}
}

.image-button:after {
z-index: -1;
content: "";
position: absolute;
width: 100%;
height: 100%;
background: #222;
left: 0;
top: 0;
border-radius: 50%;
}
table {
width: 100%;
border: none;
margin-bottom: 20px;
}
table thead th {
font-weight: bold;
text-align: left;
border: none;
padding: 10px 15px;
background: #d8d8d8;
font-size: 14px;
}
table thead tr th:first-child {
border-radius: 8px 0 0 8px;
}
table thead tr th:last-child {
border-radius: 0 8px 8px 0;
}
table tbody td {
text-align: left;
border: none;
padding: 10px 15px;
font-size: 14px;
vertical-align: top;
}
table tbody tr:nth-child(even){
background: #f3f3f3;
}
table tbody tr td:first-child {
border-radius: 8px 0 0 8px;
}
table tbody tr td:last-child {
border-radius: 0 8px 8px 0;
}

.newsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;              
  width: 100%;
  margin-block: 2rem;
  gap: 2rem;
}

.newsblock {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}
.tag + .tag {
  margin-left: .5em;
}

.tag-blue {
  background: #56CCF2;
  background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}
.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.date {
  display: flex;
  gap: .5rem;
  color: #666;
}

.news {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ECE9E6;
  background: linear-gradient(to right, #FFFFFF, #ECE9E6);
}

.serverStatus{
  color: #fff;

}

.uespEsoServerStatus {
  position: absolute;
  right: 0;
  top: 0;
}

.uespEsoServerTitle {
  display: inline-block;
  font-weight: bold;
  width: 110px;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
}
.uespEsoStatusUp {
  display: inline-block;
  color: green;
  font-weight: bold;
}
.uespEsoStatusDown{
  display:inline-block;
  color:red;
  font-weight:bold
}
.uespEsoStatusUnknown{
  display:inline-block;
  color:yellow;
  font-weight:bold
}

.rounded{
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
}
.image-cropper {
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  left:-5px;
  top:-1px;
}

.socialNetwork{
    position: absolute;
    right: 5%;
    top: 1%;
}

.newsImg{
  max-width: 300;
}

a {
  display: inline;
}

b {
  display: inline;
}