html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #242424;
}

/* .navbar {
  display: flex;
  padding: 20px;
  height: auto;
} */

/* .logo-container {
  display: flex;
  align-items: flex-end;
} */

/* .logo-image {
  width: 5vh;
  height: 5vh;
} */

/* @media screen and (max-height: 768px) {
  .logo-image {
    width: 8vh;
    height: 8vh;
  }
} */

.logo-text {
  color: rgb(0, 0, 0);
  margin-left: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border-bottom: 1.5px solid rgba(255, 0, 0, 0.751);
}

.canvas-container {
  display: flex;
  flex-direction: column;
  width: 40%;
  height: 100%;
  overflow: hidden;
}

#map {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  margin-right: 20px;
  margin-bottom: 20px;
}

#sidebar {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
}

.button {
  background-color: #5a5a5aad;
  border: 0 solid #e2e8f0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "Basier circle",-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 0.8rem;
  font-weight: 480;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0.6rem 1rem;
  text-align: center;
  text-decoration: none #0d172a solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  /*box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);*/
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-right: 5px;
  outline: none !important;
}

.button:hover {
  background-color: #414141;
  color: #ffffff;
}

.canvas-button {
  /* position: absolute; */
  background-color: transparent;
  border: 0 solid #e2e8f0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #747474; /* Grey color */
  cursor: pointer;
  display: inline-block;
  font-family: "Basier circle",-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0.3rem 1rem;
  text-align: center;
  text-decoration: none #0d172a solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  outline: none !important;
}

.canvas-button::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #ff0000;
  transition: width .3s;
}

.canvas-button:hover {
  transform: scale(1.2); /* Button will appear larger */
  color: #000000;
  font-weight: 600;
}

.canvas-button:hover::after {
  width: 100%;
}

.container-sm {
  height: 100%;
}

/* paul css */

body {
  display: flex;
  flex-direction: row;
}

#sketch-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  background-color: #F0ECE8;
  padding: 20px;
}

#navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.logo-image {
  width: 50px;
  height: 50px;
}

#sketch {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  width: auto;
  height: auto;
}

#canvas-buttons {
  position: relative;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 20px;
  gap: 30px;
}

.canvas-button {
  padding: 0;
}

#map-container {
  flex: 2;
  position: relative;
}