body {
    font-family: 'Lucida Console', monospace;
    background-color: #0a0a23;
    margin: 0px;
    padding: 20px;
    color: #ffffff;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

a {
    color: #ffffff;
}

#wordle-board {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 20px auto;
}

.row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.letter-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #333;
    border-radius: 4px;
    background-color: #999;
}

.letter-input:disabled {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #333;
    border-radius: 4px;
    background-color: #3b3b4f;
}

.color-bar {
    margin-top: 4px;
    width: 60px;
    height: 12px;
    border-radius: 2px;
    cursor: pointer;
}

.color-bar:disabled {
    margin-top: 4px;
    width: 60px;
    height: 12px;
    border-radius: 2px;
    cursor: pointer;
    background-color: #3b3b4f;
}

.color-bar.gray {
    background-color: #999;
}

.color-bar.yellow {
    background-color: #c9b458;
}

.color-bar.green {
    background-color: #6aaa64;
}

.letter-input.gray {
  background-color: #999;
  color: white;
}

.letter-input.yellow {
  background-color: #c9b458;
  color: white;
}

.letter-input.green {
  background-color: #6aaa64;
  color: white;
}

button {
    display: block;
    background-color: #f5f6f7;
    font-size: 16px;
    border-radius: 4px;
    padding: 10px 20px;
    color: #0a0a23;
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #3b3b4f;
    color: #d0d0d5;
}

.popup {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffcccc;
  color: #000;
  padding: 15px 20px; /* Adjust to taste */
  border: 2px solid #ff0000;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  min-width: 250px;  /* Optional */
}

#suggestions-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;  /* centers all children horizontally */
  text-align: center;   /* centers the text content itself */
}

#suggestions-container h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffffff;  /* or whatever matches your theme */
}

#suggestions-list {
  display: flex;
  justify-content: center;  /* centers items in the row */
  flex-wrap: wrap;           /* wraps if too many to fit */
  gap: 10px;                 /* spacing between items */
  list-style: none;
  padding: 0;
  margin: 0;
}

#suggestions-list li {
  background-color: #444;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.15s ease;
}

#suggestions-list li:hover {
  transform: scale(1.1);
  cursor: pointer;
}