/* Mono-style - By Monitio */
/* SCSS - HEX */
/*
$white: #ffffffff;
$platinum: #e7e7e7ff;
$dim-gray: #656565ff;
$davys-gray: #4d4d4dff;
$red: #ff0000ff;
*/
body {
  margin: 0;
  background: #656565;
  height: 100vh;
  overflow: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  font-family: monospace;
  max-width: 90%;
  margin: 20px auto;
  display: block;
}

.window {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 320px;
  min-width: 200px;
  min-height: 120px;
  background: #232323;
  border: 1px solid #393939;
  border-radius: 7px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4666666667);
  user-select: none;
  display: flex;
  flex-direction: column;
}

.window-title {
  background: #191a22;
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 7px 7px 0 0;
  letter-spacing: 1px;
}

.window-content {
  flex: 1;
  padding: 0 10px 10px 10px;
  background: #232323;
  border-radius: 0 0 7px 7px;
  overflow: auto;
}

.draggable {
  touch-action: none;
  user-select: none;
  position: absolute;
  z-index: 1000;
}
