#sidebar:hover .menu-text { display: inline; }
.menu-text { display: none; }

.server-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.server-card {
  display: flex;
  flex-direction: row;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  background: white;
  width: 100%;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.chart-wrapper {
  flex: 2;
  min-width: 400px;
}

.metrics-table {
  flex: 1;
  margin-left: 20px;
  min-width: 250px;
  max-height: 300px;
  overflow-y: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

.alert {
  background-color: #ffdddd;
  color: red;
  font-weight: bold;
}

.server-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.server-title {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.server-logo {
  width: 24px;
  height: 24px;
}

.server-status {
  font-weight: bold;
  font-size: 14px;
}

.online {
  color: green;
}

.offline {
  color: red;
}
