#mazeDiv {
    position: relative;
}

#mazeCanvas {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

#mazeTbl {
    position: absolute;
    top: 0px;
    left: 0px;
    border-collapse: collapse;
    border: 2px dotted black;
    z-index: 1;
}

.mazecell {
    padding: 0;
    border-top: 5px solid SteelBlue;
    border-bottom: 5px solid SteelBlue;
    border-left: 5px solid SteelBlue;
    border-right: 5px solid SteelBlue;
    width: 15px;
    height: 15px;
    text-align:center;
}

.mazepath {
    background-color: #cfb53b;
}

.startcell, .endcell {
    font-size: 20px;
}

.note{
    font-size: 12px;
    color: SteelBlue;
    font-style: italic;
    font-weight: bold;
}

h2{
    color: #034e8b;
    
}

label {
    font-size: 20px;
    color: #0073cf;
    font-weight: bold;
}

input[type=number]::-webkit-inner-spin-button {
    opacity: 1
}

input[type=number] {
    font-size: 15px;
    background-color: none;
    border: 1px lightskyblue solid;
    padding: 5px;
    margin: 0px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: MidnightBlue;
    border-radius: 5px;
}

button{
    font-size: 15px;
    background-color: none;
    border: 2px lightskyblue solid;
    padding: 5px;
    margin: 10px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: MidnightBlue;
    
    border-radius: 15px;
    box-shadow: 0 2px #999;
}

button:hover {
    color: dodgerblue;
}

button:active {
    box-shadow: 0 0px #666;
    transform: translateY(2px);
}

@media print { 
    .noprint { 
       visibility: hidden;
       height: 0;
    } 
}