/* this is excel but with dark mode, classes and styles for elements are below */
/* dark bg */
html {
  overflow: hidden;
}

body {
  overflow: auto;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

body {
  background-color: #333;
  color: #fff;
  font-family: Arial, sans-serif;
  height: 100vh;
}

.canvas {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.page {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #444;
  border: 1px solid #555;
  box-sizing: border-box;
}

.row {
  display: flex;
}

.cell {
  border: 1px solid #555;
  width: 80px;
  padding: 2px;
  color: #fff;
}
