/* randomizer.css */
/* Scoped to #game-options to avoid conflicts with other games */

/* Colors Section */
#game-options #colorsOptions {
    display: none;
    margin-top: 15px;
  }
  #game-options #colorSelectContainer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  #game-options .color-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #444;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
  }
  #game-options .color-column p {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #000;
    letter-spacing: 0.5px;
  }
  #game-options .color-grid {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    grid-template-rows: repeat(3, 60px);
    gap: 10px;
  }
  #game-options .color-tile {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  #game-options .color-tile:hover {
    border-color: #bbb;
  }
  #game-options .color-tile.selected {
    border-color: #ffcc00;
  }
  
  /* Dice Options */
  #game-options #diceOptions {
    display: none;
    margin-top: 15px;
    text-align: center;
  }
  #game-options #diceOptions p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  /* Words Section */
  #game-options #wordsOptions {
    display: none;
    margin-top: 15px;
    text-align: center;
  }
  #game-options #wordsOptions p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #game-options #wordsContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    justify-items: center;
  }
  #game-options .word-input {
    width: 90%;
    max-width: 140px;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #00796B;
    border-radius: 5px;
    outline: none;
  }
  #game-options .word-input:focus {
    border-color: #009688;
  }
  #game-options #addWordButton {
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    margin-top: 5px;
  }
  #game-options #addWordButton:hover {
    background-color: #00796B;
  }
  
  /* Numbers Section */
  #game-options #numbersOptions {
    display: none;
    margin-top: 15px;
    text-align: center;
  }
  #game-options #numbersOptions p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #game-options #numberSlider {
    width: 80%;
    max-width: 300px;
  }
  #game-options #numberValue {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
  }
  
  /* Photos Section */
  #game-options #photosOptions {
    display: none;
    margin-top: 15px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
  }
  #game-options #photosOptions p {
    font-size: 18px;
    color: #000;
    margin-bottom: 12px;
  }
  #game-options #photoModeSegmentedControl {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  #game-options #photoModeSegmentedControl .mode-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    background: #e6e6e6;
    border: 2px solid #000;
    border-radius: 50px;
    transition: background 0.3s;
  }
  #game-options #photoModeSegmentedControl .mode-btn.selected {
    background: linear-gradient(135deg, #009688, #00796B);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }
  #game-options #fileSelectWrap,
  #game-options #folderSelectWrap {
    margin-top: 10px;
  }
  #game-options #fileSelectWrap input[type="file"],
  #game-options #folderSelectWrap input[type="file"] {
    display: none;
  }
  #game-options #fileSelectWrap label,
  #game-options #folderSelectWrap label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  #game-options #fileSelectWrap label:hover,
  #game-options #folderSelectWrap label:hover {
    background-color: #00796B;
  }
  #game-options #fileSelectWrap label span,
  #game-options #folderSelectWrap label span {
    /* Translation script will modify these spans */
  }
  