/* Afisare tabel cu 2 imagini pentru afisare Status server si Playeri */

.container-imagine {
  display: flex;
  justify-content: space-around;
  margin: 20px;
}

.imagine {
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 200px;
}

.imagine h2 {
  color: #4CAF50;
}

.imagine h3 {
  color: #f44336;
}

.imagine p {
  font-size: 14px;
  color: #555;
}


/* Afisare tabel cu ranking-ul playerilor */
.custom-top-players {
    border-collapse: collapse;
    width: 100%;
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.custom-top-players th, .custom-top-players td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.custom-top-players .custom-heading {
    background-color: #4CAF50;
    color: white;
}

.custom-top-players th {
    height: 50px;
}

.custom-top-players tr:nth-child(even) {
    background-color: #f2f2f2;
}

.custom-top-players tr:hover {
    background-color: #ddd;
}

.custom-top-players .custom-top3 {
    font-weight: bold;
}

.custom-top-players .custom-RS {
    color: #e74c3c;
}

.custom-top-players .custom-ND {
    color: #3498db;
}

.custom-top-players .custom-NG {
    color: #f1c40f;
}


.custom-table-container {
  overflow-x: auto;
}


