/*
Theme Name: Poker Lads
Theme URI: https://pokerlads.com.au/
Author: Tim Kershaw
Author URI: https://pokerlads.com.au/
Description: A simple poker game management theme for Poker Lads.
Version: 1.0
Text Domain: pokerlads
*/

/* Global Styling */
body {
  background: linear-gradient(180deg, #0b0b0b, #003300);
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header & Logo */
header {
  text-align: center;
  padding: 20px 0;
}
header h1 {
  font-size: 3rem;
  text-shadow:
    0 0 5px #39ff14,
    0 0 10px #39ff14,
    0 0 20px #39ff14;
}

/* Home Button */
#home-button {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 2px solid #39ff14;
  color: #39ff14;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  margin: 10px auto;
  transition: .3s;
  text-shadow: 0 0 5px #39ff14;
}
#home-button img {
  margin-right: 8px;
}
#home-button:hover {
  background: #39ff14;
  color: #000;
  box-shadow: 0 0 20px #39ff14;
  transform: scale(1.05);
}

/* Dashboard Buttons (just in case) */
.dashboard-button {
  /* ... your existing dashboard styles ... */
}

/* Next Game Page Container */
.next-game-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Page Heading */
.next-game-container .page-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
}

/* Date Row */
.next-game-container .game-date {
  text-align: center;
  margin-bottom: 30px;
}
.next-game-container .game-date input[type="date"] {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  margin-right: 10px;
}
.next-game-container .game-date button {
  padding: 6px 12px;
  font-size: 1rem;
}

/* Seat List */
.seat-list {
  list-style: disc inside;
  padding-left: 0;
}
.seat-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.seat-list li span {
  width: 80px;
  flex-shrink: 0;
}
.seat-list li input[type="text"] {
  flex-grow: 1;
  max-width: 300px;
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 8px;
  border-radius: 4px;
  margin: 0 10px;
}
.seat-list li button {
  background: #39ff14;
  color: #000;
  border: none;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: .3s;
}
.seat-list li button:hover {
  background: #000;
  color: #39ff14;
  box-shadow: 0 0 10px #39ff14;
}

/* Clear Table Button */
.clear-table {
  display: block;
  margin: 30px auto 0;
  background: #f00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.clear-table:hover {
  background: #fff;
  color: #f00;
  box-shadow: 0 0 10px #f00;
}