/* Games List Styles */

.games-list {
  margin-top: 20px;
}

.game-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}

.game-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.game-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.2em;
}

.game-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-play, .btn-delete, .btn-primary {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  display: inline-block;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background-color: #0056b3;
  text-decoration: none;
  color: white;
}

.btn-play {
  background-color: #28a745;
  color: white;
}

.btn-play:hover {
  background-color: #1e7e34;
  text-decoration: none;
  color: white;
}

.btn-delete {
  background-color: #dc3545;
  color: white;
}

.btn-delete:hover {
  background-color: #c82333;
  text-decoration: none;
  color: white;
}

.game-info {
  line-height: 1.5;
}

.game-info p {
  margin: 8px 0;
  color: #666;
}

.game-info strong {
  color: #333;
}

.players ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.players li {
  margin: 4px 0;
  color: #666;
}

.no-games {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
}

.no-games p {
  margin-bottom: 16px;
  font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
  .game-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .game-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .btn-play, .btn-delete {
    flex: 1;
    text-align: center;
  }
}

/*# sourceMappingURL=games_list.css-676044ffe23ffa717713790ef9584e6e93b767535b5ca48824bcfda34891e1fe.map */
