.window {
  border: 2px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  box-shadow: 0 0 10px var(--accent);
}

.window:hover {
  box-shadow: 0 0 14px var(--accent);
}

.window-header {
  background: var(--header-bg);
  line-height: 25px;
  height: 25px;
  text-align: center;
  font-size: 14px;
}

.window-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 1em;
  min-height: 0;

  /* Hide scrollbar for IE, Edge and Firefox*/
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */

}

/* Hide scrollbar for Chrome, Safari and Opera */
.window-content::-webkit-scrollbar {
  display: none;
}