.server-table {
  width: 100%;
  border-spacing: 0;
  margin: 20px 0;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 10px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.server-table thead {
  background: rgba(255, 215, 0, 0.1);
}

.server-table thead tr {
  background: rgba(255, 215, 0, 0.2);
}

.server-table th, 
.server-table td {
  padding: 12px 14px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.server-table th {
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.server-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.server-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.2);
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .server-table th, .server-table td {
    font-size: 13px;
    padding: 8px;
  }
}
