/* Window header */

.window-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-blue-bg);
  padding: 3px;
}

/* Stops selecting text on the page while dragging */
.is-dragging-window {
  user-select: none;
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Edge */
}

.blue-header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.window-icon {
  width: 20px;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

.window-controls button {
  background-color: var(--grey-bg);
  padding: 0;
  margin: 0;
  appearance: none;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.minimise-line {
  height: 2px;
  width: 10px;
  background: black;
  margin-top: 8px;
}

.fullscreen-square {
  height: 8px;
  width: 9px;
  border-left: black 1px solid;
  border-right: black 1px solid;
  border-bottom: black 1px solid;
  border-top: black 2px solid;
}

/* Top bar nav */

.top-nav-bar {
  display: flex;
  background-color: var(--grey-bg);
  padding: 3px 3px 3px 10px;
  gap: 10px;
}

/* Window content */

.window-content {
}

/* Window resizing */

.window.resizable {
  position: absolute;
  resize: both;
  /* overflow: hidden; */
}

.resizer {
  position: absolute;
  width: 10px;
  height: 10px;
  background: transparent;
  z-index: 10;
}

.resizer-r { /* Right */
  cursor: ew-resize;
  height: 100%;
  right: 0;
  top: 0;
  width: 5px;
}

.resizer-b { /* Bottom */
  cursor: ns-resize;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 5px;
}

.resizer-br { /* Bottom-Right Corner */
  cursor: se-resize;
  width: 10px;
  height: 10px;
  right: 0;
  bottom: 0;
}

