html, body {
  background: #FEEBCF;
  height: 100vh;
  overflow: hidden;
  font-family: "Inter", ;
  font-size: 14px;
  color: #594427;
  font-weight: bold;
}  
.window {
  width: 300px;
  position: absolute;
  background: #BAA382;
  border: 2px solid #c1ac8e;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  height: auto; /* allow grow */
  overflow: hidden;
}

.titlebar {
  height: 40px; /* fix height for titlebar */
  line-height: 40px;
  cursor: move;
  background: #CFB591;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  user-select: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
/* On hover: zoom in slightly and darken */
.titlebar:hover {
  background-color: #BAA382; /* a bit darker */
  border: 2px solid #CFB591;
  border-radius: 10px;
  cursor: pointer; /* optional: show pointer */
}

.content {
  display: none;
  padding: 1rem;
}

.minimized .content {
  display: none;
}
button {
  background-color: #BAA382;
  color: #FEEED5;
}
button:hover {
  background-color: #7D96B8;
  color: #5E728C;
}
.content {
      display: none;
      padding: 1rem;
    }
.side-tab {
  position: fixed;
  pointer-events: none;
  top: 50%;
  left: 0;              /* use left: 0 for left side */
  transform: translateY(-50%);
  background: #be9a69;
  color: #fff;
  padding: 700px 250px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 6px 6 6 6px;
}
