:root {
  --crosshair: red;
  --lblColor: rgb(104, 255, 222);
  --panelBgColor: rgb(0, 37, 37);
  --panelBorder: 3px solid rgb(0, 124, 124);
  --panelRadius: 10px;
  --panelBoxShadow: 0 0 30px black;
  --buttonBgColor: rgb(0, 231, 231);
  --btnTextColor: rgb(0, 0, 0);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  color: aqua;
}

h2 {
  color: aqua;
}

body {
  background-color: black;
}

.label {
  color: var(--lblColor);
  text-align: center;
  border-radius: 100px;
  box-shadow: 0 0 20px black;
  border: 5px solid rgb(0, 34, 34);
  width: 15%;
  height: 30px;
  margin-top: 35px;
}

.panel {
  background-color: var(--panelBgColor);
  border-radius: var(--panelRadius);
  border: var(--panelBorder);
  box-shadow: var(--panelBoxShadow);
}

.hidden {
  position: absolute;
  visibility: hidden;
}

.center {
  display: flex;
  justify-content: center;
}

#hline {
  position: absolute;
  background-color: var(--crosshair);
  width: 400px;
  height: 1px;
  margin-top: 200px;
}

#canMain {
  border-radius: 10px;
  box-shadow: var(--panelBoxShadow);
}

#vline {
  position: absolute;
  background-color: var(--crosshair);
  width: 1px;
  height: 400px;
}

.cntrlSize {
  width: 50px;
  height: 50px;
}

.dialCntrl {
  border-radius: 100px;
  box-shadow: 0 0 20px black;
  border: 5px solid rgb(0, 93, 93);
}

.dialCntrl:hover {
  box-shadow: 0 0 20px white;
  border: 5px solid rgb(180, 255, 180);
}

#space {
  width: 50px;
  height: 50px;
}

#btnZoomIn {
  margin-right: 40px;
}

#btnZoomOut {
  margin-left: 40px;
}

#canPreviewBox {
  display: flex;
  justify-content: space-around;
}

#canPrev {
  border-radius: 10px;
  box-shadow: var(--panelBoxShadow);
}

.labelStyle {
  text-align: center;
}

#canColMap {
  width: 256px;
  height: 50px;
  margin-top: 25px;
  border-radius: 10px;
  border: 2px solid teal;
  box-shadow: var(--panelBoxShadow);
}

#colMapCntrlBox {
  display: flex;
  justify-content: space-around;
}

.button {
  font-weight: bold;
  color: var(--btnTextColor);
  text-align: center;
  background-color: var(--buttonBgColor);
  width: 25%;
  height: 45px;
  padding-top: 8px;
}
