@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
/*
style.css
Part of Moyai Clicker V2 Source Code
Under the MIT License
*/

button,
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 10;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
div#cookiez {
  text-align: center;
  position: absolute;
  bottom: 0%;
  padding-bottom: 4px;
  padding-left: 4px;
  font-size: larger;
  visibility: hidden;
}
div#popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-weight: 500;
  background-color: #ddd;
  color: #222;
  padding: 10px;
  border-radius: 5px;
  z-index: 50;
  box-shadow: 0px 0px 10px rgba(221, 221, 221, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
}
div#verString {
  text-align: left;
  position: fixed;
  top: 4px;
  padding: 4px;
  border-radius: 4px;
  right: 4px;
  background-color: rgba(0, 0, 0, 0.2);
  visibility: hidden;
}
button {
  background-color: #bbb4b4;
  border: none;
  color: white;
  padding: 7px 12px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 3px 8px rgba(255, 255, 255, 0.2);
}
button:hover {
  transform: scale(1.1);
}
button:disabled {
  background-color: #999292;
  color: #ddd;
}
button:disabled:hover {
  transform: scale(1);
  cursor: not-allowed;
}
#🗿🗿 {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  image-rendering: optimizeQuality;
}
img#moyaiimg {
  width: 30px;
  height: 30px;
}
#🗿🗿🗿 {
  font-size: 54px;
}
#ach_pg_popover {
  border: none;
  border-radius: 12px;
  padding: 16px;
  width: min(420px, 90vw);
  max-height: 70vh;
  background-color: #eee;
  color: #222;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
}
#ach_pg_popover h2 {
  margin: 0 0 10px 0;
  font-weight: 500;
  text-align: center;
}
#ach_pg_topscroll {
  max-height: 220px;
  overflow-y: auto;
  padding: 6px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.05);
}
#ach_pg_ach,
#ach_pg_locked {
  padding: 8px 10px;
  margin-bottom: 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
#ach_pg_ach {
  background-color: #cfcfcf;
  color: #222;
}
#ach_pg_locked {
  background-color: #999;
  color: #666;
  filter: grayscale(1);
}
#ach_pg_ach:hover {
  transform: scale(1.03);
  background-color: #bfbfbf;
}
#ach_pg_desc {
  margin-top: 10px;
  padding: 10px;
  min-height: 60px;
  border-radius: 8px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.08);
}
#ach_pg_popover button {
  display: block;
  margin: 12px auto 0 auto;
}

/*
style_dark.css
Part of Moyai Clicker V2 Source Code
Under the MIT License
*/

body#dark div#popup {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #ccc;
  background-color: #333;
}
body#dark {
  background-color: #222;
  color: white;
}
body#dark div#verString {
  background-color: rgba(255, 255, 255, 0.2);
}
body#dark #ach_pg_popover {
  background-color: #2b2b2b;
  color: #eee;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.6);
}
body#dark #ach_pg_topscroll {
  background-color: rgba(255, 255, 255, 0.05);
}
body#dark #ach_pg_ach {
  background-color: #3d3d3d;
  color: #eee;
}
body#dark #ach_pg_ach:hover {
  background-color: #4a4a4a;
}
body#dark #ach_pg_locked {
  background-color: #2a2a2a;
  color: #777;
}
body#dark #ach_pg_desc {
  background-color: rgba(255, 255, 255, 0.08);
}

