/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* Header with Logo */
header {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  color: #333;
}

.logo-container {
  background-color: white;
  display: inline-block;
  padding: 0px;
  border-radius: 10px;
}

header .logo {
  max-width: 120px;
  display: block;
  margin: 0 auto;
}

/* Tabs Navigation */
nav {
  display: flex;
  justify-content: space-around;
  background-color: #333;
}

nav button {
  flex: 1;
  padding: 15px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

nav button:hover, nav button.active {
  background-color: #043f77;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 20px;
}

.tab-content.active {
  display: block;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

table th {
  background-color: #f2be36;
  color: white;
}

table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Game State */
.game-state {
  text-align: center;
  margin-top: 15px;
  font-size: 1.1em;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: white;
  position: fixed;
  width: 100%;
  bottom: 0;
}

@media (max-width: 600px) {
  table th, table td {
    font-size: 0.9em;
    padding: 8px;
  }
}
