/* Draggable window styles */
.draggable-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centers the window */
  width: 300px;
  background: #e0e0e0;
  border: 2px solid black;
  box-shadow: inset -1px -1px 0 #fff, inset 1px 1px 0 #808080;
  z-index: 1000;
  display: none;
}

.draggable-window .title-bar {
  cursor: move;
  padding: 4px 8px;
  background: linear-gradient(to right, #000080, #0000a0);
  color: white;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.draggable-window .content {
  padding: 10px;
  font-size: 14px;
}

/* Mobile style */
@media (max-width: 768px) {
  .draggable-window {
    width: 90%;
    left: 5%;
    top: 10%;
  }

  .draggable-window .content {
    padding: 15px;
    font-size: 14px;
  }
}