table {
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  border-left: 1px solid rgba(138, 43, 226, 0.3);
  border-spacing: 0;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
table td {
  border-bottom: 1px solid rgba(138, 43, 226, 0.3);
  border-right: 1px solid rgba(138, 43, 226, 0.3);
  font-size: 14px;
  padding: 10px;
  transition: background-color 0.3s;
}
table tr:hover td {
  background-color: rgba(138, 43, 226, 0.05);
}
table th {
  background: linear-gradient(90deg, #8a2be2, #4b0082);
  color: white;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* 服务器状态指示器样式 */
.server-status {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.status-online {
  background-color: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulse 2s infinite;
}

.status-offline {
  background-color: #e74c3c;
  box-shadow: 0 0 8px #e74c3c;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* 复制按钮样式 */
.copy-btn {
  background-color: #8a2be2;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background-color: #4b0082;
  transform: translateY(-1px);
}

.copy-btn.copied {
  background-color: #2ecc71;
  animation: flash 0.5s;
}

.copy-btn.copy-failed {
  background-color: #e74c3c;
}

@keyframes flash {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}
table th {
  padding: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.font5 {
  color: #4b0082;
  font-weight: bold;
}
.xl68 {
  text-align: center;
  padding: 12px;
}
.xl63 {
  color: rgb(33, 37, 41);
  text-align: center;
  background: white;
  transition: all 0.3s ease;
}
.copy-btn {
  background: linear-gradient(90deg, #8a2be2, #4b0082);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}
.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.server-status {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}
.status-online {
  background-color: #28a745;
  box-shadow: 0 0 5px #28a745;
}
.status-offline {
  background-color: #dc3545;
  box-shadow: 0 0 5px #dc3545;
}