/* ──────────────────────────────────────────────── */
/* Server Status Card – with responsive backgrounds */
/* ──────────────────────────────────────────────── */

.server-status-item {
  position: relative;     /* allow background image */
  overflow: hidden;
  background-color: #2c2f33;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 150px auto;
}

/* Palworld background */
#palworldStatus {
  background-image: url('/images/palworld.png');
}

/* 7 Days to Die background */
#daysStatus {
  background-image: url('/images/7dayslogo.png');
}

/* Adjust size on small screens */
@media (max-width: 600px) {
  .server-status-item {
    background-size: 50px auto;
    padding: 1rem;
  }
}

/* (rest of your existing styles) */
.server-status-card { margin-bottom: 1.5rem; }
.server-status-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.server-status-item {
  flex: 1 1 calc(50% - 1rem);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  color: #ebedef;
  min-width: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.server-status-item .server-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  text-align: center;
}
.server-status-item .server-ip {
  font-size: 0.9rem;
  color: #b9bbbe;
  margin-bottom: 0.75rem;
  text-align: center;
}
.status-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.status-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite ease-in-out;
}
.server-status-item.online .status-indicator { background-color: #43b581; }
.server-status-item.online .status-text      { color: #43b581; }
.server-status-item.offline .status-indicator{ background-color: #f04747; }
.server-status-item.offline .status-text     { color: #f04747; }
.status-text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  background: none !important;
}
.player-info {
  margin: 0.75rem 0;
  font-size: 0.9rem;
}
.progress-bar {
  width: 100%;
  height: 6px;
  background: #202225;
  border-radius: 3px;
  overflow: hidden;
  margin-top: auto;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: #43b581;
  transition: width 0.4s ease;
}
@keyframes pulse {
  0%,100% { transform: scale(1);   opacity: 0.8; }
  50%     { transform: scale(1.4); opacity: 1;   }
}
