@font-face {
  font-family: "Plane";
  src: url("/assets/fonts/Plain-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Galapagos";
  src: url("/assets/fonts/ABCGalapagosABCGrid-Regular-Trial.woff2") format("woff2");
}

:root {

  --transition-fast: 0.2s;
  --transition-medium: 0.4s;
  --transition-slow: 0.6s;
  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  list-style: none;
  margin: 0;
  outline: none;
  border: none;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
}

::selection {
  background-color: #2e2e2e;
  color: #c7c7c7;
}

a {
  color: inherit;
  font-family: inherit;
  font-size: var(--m-font);
}

a:hover {
  text-decoration: underline;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
  touch-action: manipulation;
}

body {
  font-family: "Plane";
  font-weight: normal;
  background: #F0EDED;
  color: var(--base-color);
  text-rendering: optimizeLegibility;
  height: 100%;

}
main{
  display: flex;
  flex-direction: column;
  height: 100dvh;
  /* max-width: 600px; */
  margin: 0 auto;
  overflow: hidden;
}
#backToStart{
  position: fixed;
  top: 5px;
  right: -5px;
  z-index: 99;
  cursor: pointer;
}
.title{
  font-family: "Plane";
  padding: 10px ;
  margin-bottom: 20px;
}
#canvas-destination{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-height: 100%;
    overflow: hidden;
}
.buttons_wrap{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f0eded;
  border-top: 1px solid #ccc;
  position: relative;
  z-index: 2;

}
.buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
button {
  font-family: "Plane";

  display: flex;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between ;
  align-items: center;
  width: 150px;
  color: inherit;
  font-size: inherit;
  font-size: .8rem;
  cursor: pointer;
  margin: 5px;
  padding: 13px 16px 13px 16px;
  border-radius: 20px;
  background: #FFF;
  user-select: none;
}

canvas {
  /* aspect-ratio: 6/5; */
  width: auto !important;
  height: auto !important;
  max-height: 100%;
  max-width: 100%;
  z-index: 1x§;
}
.colors_wrap{
  display: flex;
  gap: 2px;
  padding: 5px;
}
.color{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.color.active {
  border-radius: 0px;
}

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #00C32E;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* disables interaction unless active */
}

#modal-overlay.show {
  clip-path: circle(150% at 50% 50%);
  pointer-events: all;
}

#modal-content {
  font-size: 3rem;
  font-weight: bold;
}
#username{
  color: rgb(0, 0, 255);
}
#userList{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
padding: 20px;
  width: 100vw;
  height: 100vh;
  background: #c7c7c7;
  font-family: "Galapagos";
}
#userContainer{
  display: flex;
  gap: 10px;
  flex-direction: column;
  flex-wrap: wrap;
  height: 50%;
}
.group{
  display: flex;
  flex-direction: column;
}
.status{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: red;
}
.status.saved{
  background: #00C32E;
}
.user{
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}
.user-block canvas {
  display: block;
  max-width: 100%;
  height: auto;
}
.nodata{
  color: rgb(192, 192, 192) !important;
}

.user-block div {
  overflow-x: auto;
  display: flex;
  gap: 10px;
}
.name{
  font-size:2rem;
}
@media (max-width: 860px) {

}