@charset "UTF-8";
/* Bootstrap-style select dropdown */
.bootstrap-select {
  display: block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Hover and focus effects */
.bootstrap-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Disabled style */
.bootstrap-select:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

/* Arrow icon for select */
.bootstrap-select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zM2 5l2-2H0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 10px;
  text-align: center !important;
}

/* Base button style */
.bootstrap-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
  border: 1px solid transparent;
  text-decoration: none;
}

/* Primary Button */
.bootstrap-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.bootstrap-btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

/* Danger Button */
.bootstrap-btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.bootstrap-btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

/* Success Button */
.bootstrap-btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.bootstrap-btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Secondary Button */
.bootstrap-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.bootstrap-btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* Outline Buttons */
.bootstrap-btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  border: 1px solid #007bff;
}

.bootstrap-btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}

/* Disabled Button */
.bootstrap-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Base checkbox container */
.bootstrap-checkbox {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between checkbox and label */
  font-size: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Hide default checkbox */
.bootstrap-checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Checked state */
.bootstrap-checkbox input[type=checkbox]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

/* Checkmark (✔) */
.bootstrap-checkbox input[type=checkbox]::before {
  content: "✓"; /* Unicode checkmark */
  font-size: 1rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* Show checkmark when checked */
.bootstrap-checkbox input[type=checkbox]:checked::before {
  opacity: 1;
}

/* Focus effect */
.bootstrap-checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Disabled state */
.bootstrap-checkbox input[type=checkbox]:disabled {
  background-color: #e9ecef;
  border-color: #ced4da;
  cursor: not-allowed;
}

/* Disabled checkmark */
.bootstrap-checkbox input[type=checkbox]:disabled:checked::before {
  color: #adb5bd;
}

/* Base input style */
.bootstrap-input {
  display: block;
  padding: 0.375rem 0.65rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Focus effect */
.bootstrap-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Placeholder text */
.bootstrap-input::-moz-placeholder {
  color: #6c757d;
  opacity: 1; /* Make sure it's visible */
}
.bootstrap-input::placeholder {
  color: #6c757d;
  opacity: 1; /* Make sure it's visible */
}

/* Disabled input */
.bootstrap-input:disabled {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}

/* Readonly input */
.bootstrap-input:-moz-read-only {
  background-color: #f8f9fa;
  opacity: 1;
}
.bootstrap-input:read-only {
  background-color: #f8f9fa;
  opacity: 1;
}

/* Base number input style */
.bootstrap-input-number {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* Removes default number input styling */
}

/* Remove up/down number arrows in WebKit browsers */
.bootstrap-input-number::-webkit-inner-spin-button,
.bootstrap-input-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
/* Firefox */
/* Focus effect */
.bootstrap-input-number:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Placeholder text */
.bootstrap-input-number::-moz-placeholder {
  color: #6c757d;
  opacity: 1; /* Ensure visibility */
}
.bootstrap-input-number::placeholder {
  color: #6c757d;
  opacity: 1; /* Ensure visibility */
}

/* Disabled input */
.bootstrap-input-number:disabled {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}

/* Read-only input */
.bootstrap-input-number:-moz-read-only {
  background-color: #f8f9fa;
  opacity: 1;
}
.bootstrap-input-number:read-only {
  background-color: #f8f9fa;
  opacity: 1;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease-in-out;
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem !important;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-check-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.full-width {
  width: 100%;
}

.border-bottom {
  border-bottom: 0.5px solid #ccc;
}

.text-center {
  text-align: center;
}

.font-lemon {
  font-family: "Lemon";
}

.d-none {
  display: none !important;
}

.spread {
  justify-content: space-between; /* Spread items evenly */
}

.flex-column,
.group-flex-column > div {
  display: flex;
  flex-direction: column;
}
.flex-column.flex-reverse,
.group-flex-column > div.flex-reverse {
  flex-direction: column-reverse;
}

body.mobile .only-pc {
  display: none !important;
}

body.pc .only-mobile {
  display: none !important;
}

.center-text {
  text-align: center;
}

body.mobile .m-flex-column {
  flex-direction: column;
}
body.mobile .m-flex-column.m-flex-reverse {
  flex-direction: column-reverse;
}
body.mobile .m-flex-column.m-align {
  align-items: center;
  justify-content: center;
}

body.mobile .hide-mobile {
  display: none;
}

.flex-row,
.group-flex-row > div {
  display: flex;
  flex-direction: row;
}
.flex-row.flex-reverse,
.group-flex-row > div.flex-reverse {
  flex-direction: row-reverse;
}

.clickable {
  cursor: pointer;
}

.flex-wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

.noMargin-group > * {
  margin: 0;
}

.flex-column.align {
  align-items: center;
  justify-content: center;
}

.flex-column.align-top {
  justify-content: flex-start;
}

.flex-column.center {
  align-items: center;
}

.flex-row.align,
.align-start {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.lazy-margin * {
  margin: 10px;
}

.shift-right {
  position: absolute;
  right: 0;
}

.grid-row-50 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}

.hideThis,
.soft-hide {
  display: none;
}


.contain-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Custom CSS for column widths */
.w-1 {
  width: 8.33%; /* (100 / 12) * 1 */
}

.w-2 {
  width: 16.67%; /* (100 / 12) * 2 */
}

.w-3 {
  width: 25%; /* (100 / 12) * 3 */
}

.w-4 {
  width: 33.33%; /* (100 / 12) * 4 */
}

.w-5 {
  width: 41.67%; /* (100 / 12) * 5 */
}

.w-6 {
  width: 50%; /* (100 / 12) * 6 */
}

.w-7 {
  width: 58.33%; /* (100 / 12) * 7 */
}

.w-8 {
  width: 66.67%; /* (100 / 12) * 8 */
}

.w-9 {
  width: 75%; /* (100 / 12) * 9 */
}

.w-10 {
  width: 83.33%; /* (100 / 12) * 10 */
}

.w-11 {
  width: 91.67%; /* (100 / 12) * 11 */
}

.w-12 {
  width: 100%; /* (100 / 12) * 12 */
}

body.mobile .mw-1 {
  width: 8.33%; /* (100 / 12) * 1 */
}
body.mobile .mw-2 {
  width: 16.67%; /* (100 / 12) * 2 */
}
body.mobile .mw-3 {
  width: 25%; /* (100 / 12) * 3 */
}
body.mobile .mw-4 {
  width: 33.33%; /* (100 / 12) * 4 */
}
body.mobile .mw-5 {
  width: 41.67%; /* (100 / 12) * 5 */
}
body.mobile .mw-6 {
  width: 50%; /* (100 / 12) * 6 */
}
body.mobile .mw-7 {
  width: 58.33%; /* (100 / 12) * 7 */
}
body.mobile .mw-8 {
  width: 66.67%; /* (100 / 12) * 8 */
}
body.mobile .mw-9 {
  width: 75%; /* (100 / 12) * 9 */
}
body.mobile .mw-10 {
  width: 83.33%; /* (100 / 12) * 10 */
}
body.mobile .mw-11 {
  width: 91.67%; /* (100 / 12) * 11 */
}
body.mobile .mw-12 {
  width: 100%; /* (100 / 12) * 12 */
}

/* Custom Bootstrap Margin Utilities */
/* Margin on all sides */
.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

/* Margin on top */
.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

/* Margin on top */
.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

/* Margin on start (left in LTR, right in RTL) */
.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

/* Margin on end (right in LTR, left in RTL) */
.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

/* Custom Bootstrap Padding Utilities */
/* Padding on all sides */
.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

/* Padding on top */
.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

/* Padding on start (left in LTR, right in RTL) */
.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

/* Padding on end (right in LTR, left in RTL) */
.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

#selector-page #exp-maincontainer {
  padding: 10px;
  width: 100%;
}
#selector-page #exp-maincontainer .exp-container {
  display: none;
}
#selector-page #exp-maincontainer .exp-container .title {
  display: none;
}
#selector-page #exp-maincontainer[data-page=all] .exp-container .title {
  display: flex;
}
#selector-page #exp-maincontainer[data-page=all] .exp-container {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="0"] .exp-container[data-page="0"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="1"] .exp-container[data-page="1"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="2"] .exp-container[data-page="2"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="3"] .exp-container[data-page="3"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="4"] .exp-container[data-page="4"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="5"] .exp-container[data-page="5"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="6"] .exp-container[data-page="6"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="7"] .exp-container[data-page="7"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="8"] .exp-container[data-page="8"] {
  display: grid;
}
#selector-page #exp-maincontainer[data-page="9"] .exp-container[data-page="9"] {
  display: grid;
}
#selector-page #exp-maincontainer #exp-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
#selector-page #exp-maincontainer #exp-nav button {
  font-family: "Lemon", "Courier New", Courier, monospace;
  background: color-mix(in srgb, var(--bg) 25%, white);
  color: #333;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.15s ease;
}
#selector-page #exp-maincontainer[data-page=all] #exp-nav button,
#selector-page #exp-maincontainer #exp-nav button.selected {
  background: var(--bg);
  color: var(--c, #fff);
  border-color: var(--bg);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
#selector-page #exp-maincontainer .exp-inner-container {
  display: grid;
  margin-top: 10px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#selector-page #exp-maincontainer .exp-inner-container .exp-div {
  height: 80px;
  border-radius: 20px;
  border: 1px solid grey;
  background-color: rgba(100, 100, 100, 0.4);
  text-align: center;
}
#selector-page #exp-maincontainer .exp-inner-container .exp-div.selected {
  background-color: rgb(54, 138, 43);
  color: white;
}

#menu-page {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-page #main-menu-container {
  width: 100%;
}
#menu-page #main-menu-container button {
  width: 80%;
  margin-bottom: 8px;
}
#menu-page .image-container {
  max-width: 100%;
  height: 200px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#menu-page .image-container img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  max-height: 200px;
  margin: 0 auto;
}

body .page {
  display: none;
}
body[data-page=menu] .page[data-page=menu] {
  display: flex;
}
body[data-page=menu] header {
  display: none;
}
body[data-page=selector] .page[data-page=selector] {
  display: flex;
}
body[data-page=selector] header button {
  display: none;
}
body[data-page=selector] header #back-button {
  display: block;
}
body[data-page=setup] .page[data-page=setup] {
  display: flex;
}
body[data-page=play] #play-page {
  display: flex;
}
body[data-view=focus] #focus-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
body[data-view=focus] .list-item {
  opacity: 0.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-view=focus] .list-item[data-exp-rules=true] {
  opacity: 1;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
body[data-view=focus] .list-item[data-exp-rules=true] > ul > li {
  opacity: 0.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-view=focus] .list-item[data-exp-rules=true] > ul > li[data-exp-rules=true] {
  opacity: 1;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
body[data-view=focus] .list-item[data-exp-rules=true] > ul > li[data-exp-rules=true] > ul > li {
  opacity: 0.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-view=focus] .list-item[data-exp-rules=true] > ul > li[data-exp-rules=true] > ul > li[data-exp-rules=true] {
  opacity: 1;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
body[data-view=normal] #normal-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
body[data-view=hideBasic] #hide-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
body[data-view=hideBasic] .list-item:not([data-exp-rules=true]) {
  display: none;
}
body[data-view=hideBasic] .list-item > ul > li:not([data-exp-rules=true]) {
  display: none;
}

#play-page #setup-table {
  padding: 10px 40px;
}
#play-page #setup-table .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
}
#play-page #setup-table .table-title {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid grey;
  margin-top: 10px;
  font-weight: 900;
}
#play-page #time-table {
  padding: 10px 5px;
}
#play-page #time-table .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
}
#play-page #time-table .table-row img {
  height: 12px;
}
#play-page #time-table .table-title {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid grey;
  margin-top: 10px;
  font-weight: 900;
}
#play-page #turn-nav {
  display: none;
}
#play-page .main-container .list-item,
#play-page .main-container li {
  flex-direction: column;
}
#play-page .main-container .list-item {
  padding: 2px 4px;
}
#play-page .main-container #turn-page-container,
#play-page .main-container .turn-page,
#play-page .main-container #hire-container {
  display: none;
}
#play-page .main-container .turn-page {
  padding: 5px 20px;
}
#play-page[data-page=setup] #play-setup-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=turn] #turn-page-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=turn] #turn-nav {
  display: grid;
}
#play-page[data-page=turnEnd] #play-endturn-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=roundEnd] #play-endround-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=move] #play-move-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=business] #play-business-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=expenses] #play-expenses-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=admin] #play-admin-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=gameend] #play-gameend-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-page=rules] #play-rules-container {
  display: flex;
  flex-direction: column;
}
#play-page[data-turn-page=build] #play-build-container {
  display: flex;
}
#play-page[data-turn-page=build] #turn-build-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
#play-page[data-turn-page=hire] #play-hire-container,
#play-page[data-turn-page=hire] #hire-container {
  display: flex;
}
#play-page[data-turn-page=hire] #turn-hire-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
#play-page[data-turn-page=admit] #play-admit-container {
  display: flex;
}
#play-page[data-turn-page=admit] #turn-admit-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
#play-page #play-bottom-buttons {
  position: fixed;
  width: 100vw;
  bottom: 0;
  width: 100%;
}
#play-page #play-bottom-buttons #turn-nav {
  grid-template-columns: 1fr 1fr 1fr;
  height: 50px;
}
#play-page #play-bottom-buttons #turn-nav button {
  border-radius: 0;
}
#play-page #play-bottom-buttons #phase-nav {
  display: grid;
  grid-template-columns: 1fr 40% 1fr;
  height: 70px;
}
#play-page #play-bottom-buttons {
  background-color: white;
  border-top: 1px solid grey;
}
#play-page #play-bottom-buttons #page-display {
  padding: 2px 5px;
}
#setup-page .text-icon,
#play-page .text-icon {
  width: auto;
  height: 20px;
  margin-right: 2px;
  vertical-align: middle;
}
#setup-page,
#play-page {
  padding-bottom: 200px;
}
#setup-page .main-container,
#play-page .main-container {
  width: 100%;
  position: relative;
}
#setup-page .main-container .list-item,
#play-page .main-container .list-item {
  padding: 0.55rem 0.7rem;
}
#setup-page .main-container .container .list-item,
#play-page .main-container .container .list-item {
  border-radius: 10px;
  padding: 5px 10px;
  margin-top: 5px;
}
#setup-page #hire-container .hire-table-line.selection-line,
#play-page #hire-container .hire-table-line.selection-line {
  width: 80%;
  margin-top: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-weight: 600;
  transition: all 0.2s ease;
  /* subtle hover */
}
#setup-page #hire-container .hire-table-line.selection-line:hover,
#play-page #hire-container .hire-table-line.selection-line:hover {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
#setup-page #hire-container .hire-table-line.selection-line,
#play-page #hire-container .hire-table-line.selection-line {
  /* active / used */
}
#setup-page #hire-container .hire-table-line.selection-line.used,
#play-page #hire-container .hire-table-line.selection-line.used {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15), 0 4px 14px rgba(59, 130, 246, 0.15);
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image {
  height: 40px;
  margin: 0 20px;
  padding: 2px 5px;
  position: relative;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image img.hire-icon,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image img.hire-icon {
  height: 100%;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .price,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .price {
  position: absolute;
  left: 100%;
  top: 0;
  font-size: 12px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .price img,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .price img {
  height: 12px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .car,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .car {
  position: absolute;
  left: 100%;
  bottom: 0;
  font-size: 12px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .car img,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .car img {
  height: 20px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .demand,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .demand {
  position: absolute;
  right: 100%;
  top: 0;
  font-size: 12px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .demand img,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .demand img {
  height: 12px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .point-container,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .point-container {
  position: absolute;
  left: 134%;
  top: 27%;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .point-container img,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .point-container img {
  height: 14px;
}
#setup-page #hire-container .hire-table-line.selection-line .hire-table-image .point-container span,
#play-page #hire-container .hire-table-line.selection-line .hire-table-image .point-container span {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  font-size: 8px;
  color: white;
}

:root {
  --max-wdith: 600px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 3px 8px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.12);
}

button,
.clickable,
[data-click] {
  -webkit-tap-highlight-color: transparent;
}

ul {
  padding-left: 5px;
}

li {
  list-style: none; /* no bullets/numbers */
  padding-left: 0; /* remove default indent */
  margin: 0; /* optional, if you want no outer margin */
  margin-left: 3px;
}

body {
  margin: 0 auto;
  max-width: var(--max-wdith);
  position: relative;
}

#play-bottom-buttons {
  max-width: var(--max-wdith);
}

header {
  text-align: center;
  margin-bottom: 40px;
}
header .focus-buttons {
  min-height: 60px;
  position: relative;
}
header .focus-buttons button {
  height: 100%;
  border-radius: 0;
}
header .focus-buttons {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

li {
  list-style: none;
  position: relative;
  padding-left: 1em;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
}/*# sourceMappingURL=styles.css.map */