/* some style */
@import url('https://rsms.me/inter/inter.css');

* {
  box-sizing: border-box;
}
body {
    background-color: black;
    color: #aaa;
}
* {
    font-family: Ubuntu;
}
/*
html,
body,
#app {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #101010;
  color: white;
  font-family: 'Inter var', sans-serif;
}
*/


.board .cell:hover {
    box-shadow: inset 0px 0px 5px 0px rgba(255,255,255,0.5);
}

.board:has(.control-selector) .cell:hover {
    box-shadow: none;
}


.control-cell g {
    fill: rgb(190, 234, 190);
    stroke: rgb(190, 234, 190);
}

.control-cell g text {
    fill: black;
    stroke: none;
}

.control-cell g:hover {
    fill: rgb(222, 174, 142);
    stroke: rgb(222, 174, 142);
}

.direction-cell g {
    fill: rgba(0,0,0,0.5);
}

.direction-cell g text {
    fill: rgb(190, 234, 190);
    stroke: none;
}

.direction-cell g:hover {
    fill: rgb(222, 174, 142);
    stroke: rgb(222, 174, 142);
}

.direction-cell g:hover text {
    fill: black;
    stroke: none;
}

.hover-delete:hover {
    color: red;
}
