/* [project]/bingo/app/components/Navbar.module.css [app-client] (css) */
.Navbar-module__JGBfHa__navbar {
  background: var(--navbar-bg);
  z-index: 100;
  width: 100%;
  padding: 1rem 2rem;
  transition: background .3s;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px #0000004d;
}

.Navbar-module__JGBfHa__navList {
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Navbar-module__JGBfHa__navItem {
  position: relative;
}

.Navbar-module__JGBfHa__navItem:last-child {
  margin-left: auto;
}

.Navbar-module__JGBfHa__navLink {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.Navbar-module__JGBfHa__navLink:hover {
  color: #ffeb3b;
}

.Navbar-module__JGBfHa__navLink:after {
  content: "";
  background-color: #ffeb3b;
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.Navbar-module__JGBfHa__navLink:hover:after {
  width: 100%;
}

@media (max-width: 768px) {
  .Navbar-module__JGBfHa__navbar {
    padding: .75rem 1rem;
  }

  .Navbar-module__JGBfHa__navList {
    gap: 1rem;
  }

  .Navbar-module__JGBfHa__navLink {
    padding: .5rem;
    font-size: .9rem;
  }
}

/* [project]/bingo/app/components/ThemeToggle.module.css [app-client] (css) */
.ThemeToggle-module__qH6mqq__themeToggle {
  cursor: pointer;
  background: none;
  border: 2px solid #ffffff4d;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: .5rem .75rem;
  font-size: 1.2rem;
  line-height: 1;
  transition: all .3s;
  display: flex;
}

.ThemeToggle-module__qH6mqq__themeToggle:hover {
  background: #ffffff1a;
  border-color: #ffffff80;
  transform: scale(1.05);
}

.ThemeToggle-module__qH6mqq__themeToggle:focus {
  outline-offset: 2px;
  outline: 2px solid #ffeb3b;
}

.ThemeToggle-module__qH6mqq__themeToggle:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ThemeToggle-module__qH6mqq__icon {
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 24px;
  display: inline-block;
}

@media (max-width: 768px) {
  .ThemeToggle-module__qH6mqq__themeToggle {
    padding: .4rem .6rem;
    font-size: 1rem;
  }

  .ThemeToggle-module__qH6mqq__icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

/* [project]/bingo/app/components/LanguageSelector.module.css [app-client] (css) */
.LanguageSelector-module__lkZGCa__languageSelector {
  align-items: center;
  display: flex;
}

.LanguageSelector-module__lkZGCa__select {
  background-color: var(--color-navbar-bg);
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
  cursor: pointer;
  border-radius: .25rem;
  padding: .5rem;
  font-size: .875rem;
  transition: all .2s;
}

.LanguageSelector-module__lkZGCa__select:hover {
  background-color: var(--color-navbar-hover);
  border-color: var(--color-primary);
}

.LanguageSelector-module__lkZGCa__select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px #ff3d9a33;
}

.LanguageSelector-module__lkZGCa__select option {
  background-color: var(--color-navbar-bg);
  color: var(--color-foreground);
}

/* [project]/bingo/app/components/Toast.module.css [app-client] (css) */
.Toast-module__vy7w-W__container {
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  gap: 10px;
  display: flex;
  position: fixed;
  top: 80px;
  right: 20px;
}

.Toast-module__vy7w-W__toast {
  pointer-events: auto;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 500px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  box-shadow: 0 4px 12px #00000026;
}

.Toast-module__vy7w-W__icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: bold;
}

.Toast-module__vy7w-W__message {
  word-break: break-word;
  flex: 1;
}

.Toast-module__vy7w-W__closeButton {
  cursor: pointer;
  opacity: .7;
  background: none;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  transition: background-color .2s;
  display: flex;
}

.Toast-module__vy7w-W__closeButton:hover {
  opacity: 1;
}

.Toast-module__vy7w-W__success {
  color: #fff;
  background-color: #4caf50;
}

.Toast-module__vy7w-W__success .Toast-module__vy7w-W__closeButton:hover {
  background-color: #fff3;
}

.Toast-module__vy7w-W__error {
  color: #fff;
  background-color: #f44336;
}

.Toast-module__vy7w-W__error .Toast-module__vy7w-W__closeButton:hover {
  background-color: #fff3;
}

.Toast-module__vy7w-W__warning {
  color: #fff;
  background-color: #ff9800;
}

.Toast-module__vy7w-W__warning .Toast-module__vy7w-W__closeButton:hover {
  background-color: #fff3;
}

.Toast-module__vy7w-W__info {
  color: #fff;
  background-color: #2196f3;
}

.Toast-module__vy7w-W__info .Toast-module__vy7w-W__closeButton:hover {
  background-color: #fff3;
}

@media (max-width: 768px) {
  .Toast-module__vy7w-W__container {
    top: 70px;
    left: 10px;
    right: 10px;
  }

  .Toast-module__vy7w-W__toast {
    min-width: unset;
    width: 100%;
  }
}

/* [project]/bingo/app/globals.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-font-weight: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-green-100: #dcfce7;
    --color-green-400: #05df72;
    --color-green-700: #008138;
    --color-blue-500: #3080ff;
    --color-white: #fff;
    --spacing: .25rem;
    --container-xs: 20rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-background: #fff;
    --color-foreground: #171717;
    --color-input-text: #000;
    --color-primary: #ff007f;
    --color-secondary: #000;
    --color-card-bg: #fff;
    --color-border: #e5e5e5;
    --color-modal-bg: #fff;
    --color-navbar-bg: #1a1a1a;
    --color-navbar-hover: #2d2d2d;
    --color-progress-bg: #f3f3f3;
  }

  @supports (color: lab(0% 0 0)) {
    :root, :host {
      --color-green-100: lab(96.1861% -13.8464 6.52365);
      --color-green-400: lab(78.503% -64.9265 39.7492);
      --color-green-700: lab(47.0329% -47.0239 31.4788);
      --color-blue-500: lab(54.1736% 13.3369 -74.6839);
    }
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .sr-only {
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .isolate {
    isolation: isolate;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .mx-auto {
    margin-inline: auto;
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .max-w-xs {
    max-width: var(--container-xs);
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

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

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .truncate {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .rounded {
    border-radius: .25rem;
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-green-400 {
    border-color: var(--color-green-400);
  }

  .bg-blue-500 {
    background-color: var(--color-blue-500);
  }

  .bg-green-100 {
    background-color: var(--color-green-100);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .whitespace-nowrap {
    white-space: nowrap;
  }

  .text-green-700 {
    color: var(--color-green-700);
  }

  .text-white {
    color: var(--color-white);
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .text-balance {
    text-wrap: balance;
  }

  .sr-only {
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .skip-to-main {
    background: var(--primary-color);
    color: #fff;
    z-index: 100;
    border-radius: 0 0 4px;
    padding: 8px 16px;
    font-weight: 600;
    text-decoration: none;
    position: absolute;
    top: -40px;
    left: 0;
  }

  .skip-to-main:focus {
    top: 0;
  }
}

:root {
  --background: var(--color-background);
  --foreground: var(--color-foreground);
  --input-text-color: var(--color-input-text);
  --primary-color: var(--color-primary);
  --secondary-color: var(--color-secondary);
  --card-bg: var(--color-card-bg);
  --border-color: var(--color-border);
  --modal-bg: var(--color-modal-bg);
  --navbar-bg: var(--color-navbar-bg);
  --navbar-hover: var(--color-navbar-hover);
  --progress-bg: var(--color-progress-bg);
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #0a0a0a;
    --color-foreground: #ededed;
    --color-input-text: #ededed;
    --color-primary: #ff3d9a;
    --color-secondary: #fff;
    --color-card-bg: #1a1a1a;
    --color-border: #333;
    --color-modal-bg: #1a1a1a;
    --color-navbar-bg: #0d0d0d;
    --color-navbar-hover: #1a1a1a;
    --color-progress-bg: #2a2a2a;
    --lightningcss-light: ;
    --lightningcss-dark: initial;
    color-scheme: dark;
  }
}

[data-theme="dark"] {
  --color-background: #0a0a0a;
  --color-foreground: #ededed;
  --color-input-text: #ededed;
  --color-primary: #ff3d9a;
  --color-secondary: #fff;
  --color-card-bg: #1a1a1a;
  --color-border: #333;
  --color-modal-bg: #1a1a1a;
  --color-navbar-bg: #0d0d0d;
  --color-navbar-hover: #1a1a1a;
  --color-progress-bg: #2a2a2a;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

[data-theme="light"] {
  --color-background: #fff;
  --color-foreground: #171717;
  --color-input-text: #000;
  --color-primary: #ff007f;
  --color-secondary: #000;
  --color-card-bg: #fff;
  --color-border: #e5e5e5;
  --color-modal-bg: #fff;
  --color-navbar-bg: #1a1a1a;
  --color-navbar-hover: #2d2d2d;
  --color-progress-bg: #f3f3f3;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

input {
  color: var(--input-text-color, var(--foreground));
}

html {
  width: 100%;
  transition: background-color .3s, color .3s;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  transition: background-color .3s, color .3s;
  overflow-x: hidden;
}

*, :before, :after {
  box-sizing: border-box;
}

h1, h2, h3 {
  color: var(--foreground);
  text-align: center;
  margin-bottom: .5em;
  font-family: Oswald, sans-serif;
}

h1 {
  font-size: 2.5em;
  font-weight: bold;
}

h2 {
  font-size: 2em;
  font-weight: semi-bold;
}

h3 {
  font-size: 1.75em;
  font-weight: normal;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.25em;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75em;
  }

  h2 {
    font-size: 1.25em;
  }

  h3 {
    font-size: 1.1em;
  }
}

.bingo-cell {
  background-color: var(--primary-color);
  border: .125rem solid var(--secondary-color);
  color: #fff;
  border-radius: .25rem;
  place-items: center;
  min-width: 52px;
  min-height: 52px;
  font-size: 1.75rem;
  font-weight: bold;
  display: grid;
}

@media (max-width: 1024px) {
  .bingo-cell {
    border-width: 1px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .bingo-cell {
    min-width: 36px;
    min-height: 36px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .bingo-cell {
    min-width: 30px;
    min-height: 30px;
    font-size: 1rem;
  }
}

.bingo-cell.empty {
  background-color: var(--background);
}

.cardNumber {
  color: var(--foreground);
  overflow-wrap: break-word;
  font-size: .75rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cardNumber {
    font-size: .625rem;
  }
}

@media (max-width: 480px) {
  .cardNumber {
    font-size: .5rem;
  }
}

.file-upload {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  font-family: Roboto, sans-serif;
}

@media (max-width: 768px) {
  .file-upload {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .file-upload {
    padding: 10px;
  }
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.input-style {
  box-sizing: border-box;
  border: .125rem solid var(--primary-color);
  border-radius: .25rem;
  width: 100%;
  padding: 10px;
}

.hidden {
  visibility: hidden;
}

.button-style {
  cursor: pointer;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .75rem;
  transition: background-color .3s, transform .3s;
  display: flex;
  box-shadow: 0 4px 6px #0000001a;
}

.button-style:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.progress-bar-container {
  background-color: var(--progress-bg);
  border-radius: .25rem;
  width: 100%;
  overflow: hidden;
}

.progress-bar {
  background-color: var(--primary-color);
  height: 10px;
  transition: width .3s;
}

.bingo-card {
  border: .125rem solid var(--secondary-color);
  border-radius: .25rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 8px 6px;
  display: inline-block;
  overflow: hidden;
}

@media (max-width: 768px) {
  .bingo-card {
    margin-bottom: 15px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .bingo-card {
    margin-bottom: 10px;
    padding: 6px;
  }
}

.grid-container {
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(9, auto);
  align-items: center;
  gap: .25rem;
  width: max-content;
  display: grid;
}

@media (max-width: 768px) {
  .grid-container {
    gap: .1875rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-container {
    gap: .125rem;
    max-width: 100%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.card-placeholder {
  width: 100%;
}

.navbar {
  background-color: #333;
  padding: 0 20px;
  overflow: hidden;
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.navbar li {
  margin-right: 20px;
}

.navbar .nav-link {
  color: #fff;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
}

.navbar .nav-link:hover {
  background-color: #111;
}

.game-page {
  text-align: center;
  padding: 20px;
}

.button-style {
  margin: 5px;
  padding: 10px 20px;
}

.current-number h2 {
  font-size: 2em;
}

.drawn-numbers {
  margin-top: 20px;
}

.modal-overlay {
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-box {
  background-color: var(--modal-bg);
  color: var(--foreground);
  text-align: center;
  border-radius: 8px;
  padding: 20px;
}

.modal-box p {
  margin-bottom: 20px;
}

.modal-box .button-style {
  margin: 5px;
}

.container {
  place-items: center;
  width: 100%;
  display: grid;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation-duration: .3s;
  animation-timing-function: ease-in-out;
}

::view-transition-new(root) {
  animation-duration: .3s;
  animation-timing-function: ease-in-out;
}

::view-transition-old(root) {
  animation-name: fade-out;
}

::view-transition-new(root) {
  animation-name: fade-in;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) {
    animation-name: slide-out-fade;
  }

  ::view-transition-new(root) {
    animation-name: slide-in-fade;
  }

  @keyframes slide-out-fade {
    from {
      opacity: 1;
      transform: translateX(0);
    }

    to {
      opacity: 0;
      transform: translateX(-20px);
    }
  }

  @keyframes slide-in-fade {
    from {
      opacity: 0;
      transform: translateX(20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

/*# sourceMappingURL=bingo_app_f5a4ff02._.css.map*/