/* width */
::-webkit-scrollbar {
    width: 4px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #eee;
}

.side-bar {
    position: fixed;
    height: 100%;
    width: 270px;
    top: 0;
    left: -330px;
    padding: 100px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    -webkit-transition: all 0.8s ease 0.3s;
            transition: all 0.8s ease 0.3s;
}

.side-bar #arrow {
    position: absolute;
    left: 330px;
    top: 45vh;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    /* padding: 40px 10px; */
    padding: 20% 5%;
    cursor: pointer;
}

.side-bar #arrow span {
    display: block;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.5s ease 0.3s;
            transition: all 0.5s ease 0.3s;
}

.side-bar:hover #arrow span {
    -webkit-transform: rotate(-179deg);
            transform: rotate(-179deg);
    -webkit-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}

.side-bar:hover {
    left: 0;
    -webkit-transition: all 0.8s ease 0s;
            transition: all 0.8s ease 0s;
}

.side-bar input {
    width: 90%;
    filter: invert(1);
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    border: none;
    background-color: #eee;
    opacity: 0.5;
}

table {
    padding: 0;
    margin: 20px 0;
    display: block;
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
}

table tr {
    padding: 2px;
}

table tr th {
    color: #eee;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    padding: 8px 10px;
    margin: 5px 2px;
    user-select: none;
    font-size: 12px;    
}

table tr td {
    color: #eee;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    padding: 8px 10px;
    margin: 5px 2px;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: all 0.15s;
            transition: all 0.15s;
}

table tr:hover td {
    background-color: rgba(50, 50, 50, 0.3);
}

table tr:active td {
    background-color: rgba(255, 255, 255, 0.7);
    color: #222;
    user-select: none;
}

.notice,
.notice:active,
.notice:hover,
.notice:visited {
    position: fixed;
    bottom: 30px;
    right: 10px;
    color: #ddd;
    padding: 10px;
    border-radius: 12px;
    z-index: 9999;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.15s;
            transition: all 0.15s;
}

.notice:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.notice:active {
    background-color: rgba(220, 220, 220, 0.7);
    color: #000;
}
