/* Body styles */
body {
  font-family: Arial, sans-serif !important;
  background-color: #f0f0f0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Container styles */
.demonlist-container {
  margin: 20px auto !important;
  max-width: 800px !important;
  background-color: #fff !important;
  border-radius: 8px !important;
  padding: 20px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Header styles */
h1 {
  text-align: center !important;
  color: #333 !important;
}

/* View buttons */
.view-button {
  margin: 10px !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  cursor: pointer !important;
  background-color: #4CAF50 !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  transition: background-color 0.3s ease !important;
}

.view-button:hover {
  background-color: #45a049 !important;
}

/* Demon list styles */
.demonlist {
  list-style: none !important;
  padding: 0 !important;
}

.demon-item {
  margin-bottom: 20px !important;
  padding: 20px !important;
  background-color: #f9f9f9 !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.3s ease !important;
}

.demon-item:hover {
  transform: translateY(-3px) !important;
}

.demon-name {
  font-weight: bold !important;
  margin-bottom: 10px !important;
  color: #333 !important;
}

.record-verifier {
  margin-top: 10px !important;
}

.verifier-label {
  font-style: italic !important;
  color: #777 !important;
}

.verifier-name {
  font-weight: bold !important;
}

/* Thumbnail styles */
.thumbnail {
  width: 100px !important;
  height: auto !important;
  margin-left: 20px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Stats viewer container styles */
.stats-container {
  margin: 20px auto;
  max-width: 800px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Player card styles */
.player-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.player-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.player-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #555;
}

.player-stats {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.player-stats-item {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.player-stats-item span {
  font-weight: bold;
  color: #333;
}

/* Player list styles */
.player-list {
  list-style: none;
  padding: 0;
}

.player-list-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.player-list-item:hover {
  transform: translateY(-5px);
}

.player-list-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.player-list-item p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #555;
}

/* Back to list button */
.back-to-list-btn {
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 18px;
  cursor: pointer;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.back-to-list-btn:hover {
  background-color: #45a049;
}