.serverStats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.serverStats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
}
.serverStats .stats-grid .stat-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.serverStats .stats-grid .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.serverStats .stats-grid .stat-card h3 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.serverStats .stats-grid .stat-card .chart-container {
  position: relative;
  height: 200px;
  width: 100%;
  margin-bottom: 0.75rem;
}
.serverStats .stats-grid .stat-card canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  border-radius: 8px;
}
.serverStats .stats-grid .stat-card p {
  text-align: center;
  margin: 0.75rem 0 0 0;
  font-weight: 500;
  color: #495057;
  font-size: 0.95rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.serverStats .graphs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 1rem;
}
.serverStats .graphs .graph {
  background: linear-gradient(135deg, rgb(250, 250, 250) 0%, rgb(245, 245, 245) 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  min-width: 300px;
  flex: 1;
}
.serverStats .graphs .graph:hover {
  transform: translateY(-2px);
}
.serverStats .graphs .graph p {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.5rem;
  margin: 0.25rem 0;
  color: #495057;
}
.serverStats #serverOutput {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
  padding: 1.5rem;
  border-radius: 8px;
  font-family: "Courier New", Monaco, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  border: 1px solid #dadce0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #3c4043;
  max-height: 300px;
  overflow-y: auto;
}
.serverStats #serverOutput::-webkit-scrollbar {
  width: 8px;
}
.serverStats #serverOutput::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.serverStats #serverOutput::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.serverStats #serverOutput::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
@media (max-width: 1200px) {
  .serverStats .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .serverStats .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .serverStats .stat-card {
    padding: 1rem;
  }
  .serverStats .stat-card h3 {
    font-size: 1.1rem;
  }
  .serverStats .stat-card .chart-container {
    height: 180px;
  }
  .serverStats .graphs {
    gap: 1rem;
  }
  .serverStats .graphs .graph {
    min-width: 250px;
    padding: 1rem;
  }
  .serverStats .graphs .graph p {
    font-size: 1rem;
  }
  .serverStats #serverOutput {
    padding: 1rem;
    font-size: 0.8rem;
    max-height: 250px;
  }
}
@media (max-width: 480px) {
  .serverStats .stat-card {
    padding: 0.75rem;
  }
  .serverStats .stat-card .chart-container {
    height: 160px;
  }
  .serverStats .graphs .graph {
    min-width: 200px;
    padding: 0.75rem;
  }
}

.serverStats .stat-card:nth-child(2) {
  border-left: 4px solid #ff6384;
}
.serverStats .stat-card:nth-child(3) {
  border-left: 4px solid #ff9f40;
}
.serverStats .stat-card:nth-child(4) {
  border-left: 4px solid #36a2eb;
}
.serverStats .stat-card:first-child {
  border-left: 4px solid #4bc0c0;
}

.stat-card p[data-loading=true] {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.admin-tools {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.download-log-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.download-log-button:hover {
  background-color: #218838;
}/*# sourceMappingURL=serverStats.css.map */