.reccircle {
  border-radius: 50vh;
}

.small-dot {
  width: 10px;
  height: 10px;
  background-color: red;
}

.chinese {
  font-family: 'Raleway', 'Noto Sans SC', 'Arial', sans-serif;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.xterm-viewport::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0,0,0,0.1);
}

.xterm-viewport::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
}

.xterm-viewport::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.4);
}

.xterm-viewport::-webkit-scrollbar-thumb:active {
  background: rgba(0,0,0,.9);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#restart-icon {
  animation-name: rotate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#restart-btn {
  cursor: pointer;
}

#modal-data-box {
  background-color: rgb(206, 206, 206);
  border-radius: 20px;
}
.btn-minor {
  border-radius: 6px;
  background-color: #e7e1fc;
  color: black;
  border-style: none;
}
.cursor-pointer {
  cursor: pointer;
}
.copy-tooltip {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  z-index: 9999;
  animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
