/* [project]/src/styles/globals.css [app-client] (css) */
:root {
  --navbar-height: 64px;
}

body {
  color: #000;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

main {
  top: var(--navbar-height);
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  position: relative;
}

.nav-link {
  color: #000;
  text-decoration: none;
}

.drawer-active {
  background-color: var(--mui-palette-primary-main) !important;
  color: #fff !important;
}

.drawer-active:hover {
  background-color: var(--mui-palette-primary-main) !important;
}

.drawer-items {
  align-items: center;
  display: flex;
}

.page-content {
  padding: 20px 40px 30px;
}

.page-content h1 {
  margin-top: 0;
  margin-bottom: 10px;
}

.content {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -20px;
  display: flex;
}

.content-left {
  width: 40%;
}

.content-right {
  width: 30vw;
  margin: 0 20px;
}

.content-right h3:first-child {
  margin-top: 0;
  margin-bottom: .25rem;
}

.timesheets-layout {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  display: flex;
}

.timesheets-left {
  flex: 60%;
  min-width: 320px;
  max-width: 900px;
}

.timesheets-right {
  background-color: #f7f7f7;
  border-radius: 12px;
  flex: 0 0 320px;
  max-width: 360px;
  padding: 16px 18px;
  font-size: .95rem;
  box-shadow: 0 1px 3px #00000014;
}

.timesheets-reward-rules {
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.timesheets-reward-rules li {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.timesheets-rule-text {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.timesheets-rule-title {
  color: #333;
  font-size: .95rem;
  font-weight: 600;
}

.timesheets-rule-note {
  color: #777;
  font-size: .9rem;
}

.timesheets-rule-amount {
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
}

.timesheets-list {
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.timesheets-list-item {
  background-color: #f7f7f7;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 6px 12px;
  display: flex;
  box-shadow: 0 1px 3px #00000014;
}

.timesheets-info {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  display: flex;
}

.timesheets-date {
  color: #666;
  border-right: 1px solid #ccc;
  margin-right: 10px;
  padding-right: 10px;
  font-size: .7rem;
  font-weight: 500;
}

.timesheets-label {
  color: #333;
  font-size: .85rem;
}

.timesheets-amount {
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
}

.timesheets-missing {
  box-shadow: none;
  background-color: #0000;
  border: 1px dashed #e57373;
}

.timesheets-missing .timesheets-label {
  color: #888;
  font-style: italic;
}

.timesheets-missing .timesheets-amount {
  color: #999;
}

.timesheets-missing .timesheets-amount span[role="img"] {
  opacity: .2;
}

.timesheets-error {
  color: red;
  margin-top: 16px;
}

@media (max-width: 1008px) {
  .content {
    flex-direction: column;
  }

  .content-left {
    width: 90%;
  }

  .content-right {
    width: 80%;
    min-width: 25rem;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .timesheets-right {
    flex: 100%;
    max-width: none;
  }
}

.search-placeholder {
  align-items: center;
  display: flex;
}

.neighbours-list {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 2px 5px;
  display: flex;
}

.neighbours-list p {
  margin: 0;
}

.max-neighbours {
  color: red;
  font-size: small;
  font-weight: bold;
}

.draggable-list ul, .draggable-list ol, .draggable-list li {
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.draggable-list ul, .draggable-list ol {
  width: 25rem;
  position: relative;
}

.draggable-list li {
  background: #fff;
  border-radius: 5px;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
  padding: 4px 12px;
  display: flex;
  position: relative;
}

.draggable-list li svg {
  cursor: grab;
  width: 18px;
  height: 18px;
}

.clear-btn {
  min-width: 0 !important;
}

.clear-btn svg {
  cursor: pointer !important;
}

.refresh {
  cursor: pointer;
  background: #0006;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 10px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

kbd {
  color: #333;
  white-space: nowrap;
  background-color: #eee;
  border: 1px solid #b4b4b4;
  border-radius: 3px;
  padding: 2px 4px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  box-shadow: 0 1px 1px #0003, inset 0 2px #ffffffb3;
}

.arrow-keys-instructions {
  align-items: center;
  display: flex;
}

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

.settings-label {
  -webkit-user-select: none;
  user-select: none;
}

.settings-buttons {
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

#game {
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  display: block;
  position: relative;
  overflow: hidden;
}

.game-button.MuiButtonBase-root {
  aspect-ratio: 1;
  width: 48px;
  height: 48px;
  padding: 0;
  position: absolute;
  min-width: 0 !important;
}

.game-button.home-button {
  bottom: 15px;
  right: 15px;
}

.game-button.controls-button {
  bottom: 80px;
  right: 15px;
}

.game-button.shop-button {
  z-index: 1;
  bottom: 15px;
  left: 15px;
}

.shop-content {
  -webkit-user-select: none;
  user-select: none;
  flex-direction: column;
  height: calc(100vh - 70px);
  margin-top: 70px;
  padding: 0 6px;
  display: flex;
  overflow: hidden;
}

.shop-category-nav {
  scrollbar-width: none;
  background-color: #f5f5f5e6;
  flex-flow: row;
  gap: 6px;
  padding: 8px 6px 0;
  display: flex;
  overflow-x: auto;
}

.shop-category-nav::-webkit-scrollbar {
  display: none;
}

.shop-category-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  opacity: .88;
  letter-spacing: .2px;
  border: none;
  border-radius: 8px 8px 0 0;
  flex-shrink: 0;
  margin-bottom: 0;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 600;
  transition: opacity .15s;
}

.shop-category-btn:hover {
  opacity: 1;
}

.shop-item-scroll {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 4px 4px 8px;
  display: flex;
  overflow-y: auto;
}

.shop-category-section {
  border-radius: 10px;
  padding: 8px 8px 10px;
}

.shop-category-label {
  letter-spacing: .4px;
  margin-bottom: 8px;
  padding: 4px 4px 6px;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

.shop-bottom-bar {
  background-color: #f5f5f5e6;
  border-top: 1px solid #ddd;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.shop-description-box {
  background-color: #fffc;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex: 1;
  max-height: 100px;
  padding: 10px 12px;
  overflow-y: auto;
}

.shop-description-text {
  color: #000;
  font-size: .85em;
  line-height: 1.4;
}

.shop-current-item {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 30px;
  display: flex;
}

.item-img {
  object-fit: scale-down;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  height: 90px;
}

.die-preview {
  width: 180px;
  height: 180px;
}

.die-preview canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.shop-item .die-preview {
  width: 153px;
  height: 80px;
}

.item-img-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: inline-flex;
  position: relative;
}

.item-chip {
  color: #fff;
  letter-spacing: .2px;
  pointer-events: none;
  background-color: #69c46b;
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  top: 2px;
  right: 2px;
}

.item-chip--frog {
  background-color: #69c46b;
}

.item-img-wrapper.lava:after {
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
  background: #ff5028bf;
  position: absolute;
  inset: 0;
}

.item-img-wrapper.lava img {
  filter: saturate(0) brightness(.5) contrast(1.9);
}

.sell-section p {
  text-align: center;
  margin: 5px;
}

.shop-item-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  display: grid;
}

.shop-item {
  cursor: pointer;
  background-color: #f5f5f5;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 6px;
  display: flex;
}

.shop-item-sufficient-coins:hover {
  box-shadow: 0 0 0 2px #00f;
}

.selected {
  background-color: #add8e6;
  box-shadow: 0 0 0 2px #00f;
}

.shop-item-insufficient-coins {
  opacity: .5;
  cursor: not-allowed;
  background-color: #fcc;
}

.shop-item-insufficient-coins img {
  filter: grayscale();
}

.shop-item-insufficient-coins p {
  color: red;
}

.shop-item img {
  margin: auto;
  display: block;
}

.shop-item-info {
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  display: flex;
}

.shop-item-info h4, .shop-item-info p {
  margin: 4px 0;
  font-size: .85rem;
}

.spinner-page {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.spinner {
  width: 500px;
  height: 500px;
}

.bug-report-banner {
  z-index: 100;
  top: calc(var(--navbar-height)  + 12px);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #b44646f2;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  animation: .3s ease-out toast-slide-in;
  display: flex;
  position: fixed;
  right: 16px;
  box-shadow: 0 4px 12px #00000040;
}

.bug-report-banner p {
  margin: 0;
  font-size: .9rem;
}

.bug-report-banner a {
  text-decoration: underline;
  color: #a8d4ff !important;
}

.bug-report-banner a:hover {
  color: #cfe6ff !important;
}

.bug-report-banner .clear-btn {
  color: #fff;
  opacity: .8;
  min-width: 32px;
  padding: 4px;
  transition: opacity .2s;
}

.bug-report-banner .clear-btn:hover {
  opacity: 1;
  background-color: #ffffff1a;
}

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

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

.landing-container {
  color: #fff;
  flex-direction: column;
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  display: flex;
}

.hero-section {
  text-align: center;
  background-image: url("/splash.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 0 1.5rem;
  animation: 1.5s ease-in-out forwards fadeIn;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: "";
  z-index: 1;
  background-color: #000000a6;
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 2;
  width: 100%;
  max-width: 50rem;
  position: relative;
}

.hero-title {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.email-login-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff26;
  border: 1px solid #ffffff40;
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: .75rem;
}

.email-login-form {
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  width: 100%;
  display: flex;
}

.email-login-input {
  color: #e5e7eb;
  border-radius: 8px;
  flex-grow: 1;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.login-error {
  color: red;
  background-color: #fff0f0e6;
  border: 1px solid #ffc8c8cc;
  border-radius: 8px;
  flex-grow: 1;
  margin-top: 1rem;
  padding: .75rem 1rem;
}

.btn-spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  animation: .8s linear infinite btn-spin;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  color: #fff;
  text-align: center;
  z-index: 10;
  width: 100%;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=src_styles_globals_47180df9.css.map*/