.server-table {
  margin-bottom: 20px;
}

.server-header {
    background-color: #141125;
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid #ffffff0d;
    margin-bottom: 8px;
}

.server-body {
    display: none;
    flex-direction: column;
    background: #141125;
    padding: 4px;
    border: 1px solid #201d30;
    border-radius: 4px;
}

.server-row {
    display: flex;
    align-items: center;
    background-color: #0a071b;
    border: 1px solid #1d1a2c;
    border-radius: 4px;
    padding: 15px;
    margin: 8px 15px;
    transition: background 0.3s;
    flex-wrap: wrap;
}

.server-name {
    flex: 1;
    font-weight: bold;
    color: white;
    font-size: 15px;
}

.new-tag {
  background-color: #14c77f;
  color: #0F1420;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 10px;
}

.players {
  width: 80px;
  text-align: center;
  color: #9faec3;
}

.map-name {
  flex: 1;
  color: #00aaff;
  text-align: left;
}






.mapimg {
  flex: 1;
  font-size: 14px;
  color: #cbd8e2;
}





.ip {
    flex: 1;
    font-size: 14px;
    color: #cbd8e2;
    font-weight: 600;
}

.actions {
  display: flex;
  gap: 10px;
}

.action-icon {
    padding: 11px;
    /* border: 1px solid #20263873; */
    /* background-color: #2b2f3b; */
    border-radius: 4px;
    color: #f9f9f9;
    box-shadow: inset rgb(44 41 59) -1px 1px 1px 0px !important;
}


.action-icon:hover {
    background-color: #2c293b;
   cursor:pointer;
}

.circle-progress {
  width: 20px;
  height: 20px;
  border: 2px solid red;
  border-radius: 50%;
  margin: 0 auto 5px;
}

.toggle-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.collapsed .toggle-icon {
  transform: rotate(-90deg);
}

/* ✅ RESPONSIVE: doar server-name pe mobil */
@media (max-width: 600px) {
  .players,
  .map-name,
  .actions,
  .circle-progress {
    display: none !important;
  }

  .server-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .server-name {
    width: 100%;
  }
}




		
		