#ttb-scoreboard-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
#ttb-scoreboard-input {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}
.ttb-format-choice {
    margin-bottom: 10px;
}
#ttb-scoreboard-start {
    margin-bottom: 20px;
}
.ttb-board-format {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.ttb-list-format .ttb-score-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.ttb-score-box {
    border: 2px solid #333;
    padding: 15px;
    background: #000;
    color: red;
    font-family: monospace;
	  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.ttb-score {
    font-size: 36px;
    margin-bottom: 10px;
    border: 2px solid red;
    padding: 5px 10px;
}
.ttb-list-format .ttb-score {
    font-size: 20px;
    margin-right: 15px;
    margin-bottom: 0;
}
.ttb-name {
    font-weight: bold;
    color: white;
  word-wrap: break-word;
  white-space: normal;
  text-align: center;
  padding: 5px 10px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.ttb-list-format .ttb-name {
    margin-right: 15px;
    min-width: 100px;
    text-align: left;
}
.ttb-buttons button {
    margin: 0 5px;
    border: 1px solid white;
}
.ttb-list-format .ttb-buttons {
    margin-left: auto;
}

.ttb-plus {
  background-color: #28a745; /* Bootstrap green */
  color: white;
  border: none;
  padding: 6px 12px;
  font-weight: bold;
  cursor: pointer;
}

.ttb-minus {
  background-color: #dc3545; /* Bootstrap red */
  color: white;
  border: none;
  padding: 6px 12px;
  font-weight: bold;
  cursor: pointer;
}