#gamebox{ 
 background: #000;
 position: relative;
}

/* Center the canvas horizontally */
canvas {
  display: block;
  margin: 0 auto;
  border: 0;
  border: 1px solid #555;
}

/* Style the start and end squares */
.green {
  background-color: green;
}

.red {
  background-color: red;
}

/* Style the movable block */
.blue {
  background-color: blue;
}

/* Style the walls */
.black {
  background-color: black;
}

#topbar{
    display: flex;
    justify-content: center; 
}
.topcnt{
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-align: center;
}
#remain{
    color: #fff;
    display: flex;
    align-items: center; 
    height: 100%;
}
#timer {
    color: red;
    display: flex;
    align-items: center; 
    height: 100%;
    text-align: left;
    font-weight: bold;
}
#mainctn{
    width: 100%;
    position: relative;
}
#maze{
    float: left;
    /*background: #000;*/
    background: #FFF;
}
#gamebox #gameSidebar {
    float: left;
    height: 100%;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    align-items: center; 
}
#gamebox #gameSidebar p{
    color: #aaa;
    text-align: center;
}
#timePauseBtn, #pathBtn {
    display: flex;
    align-items: center;  
    justify-content: center; 
    margin: 0px 0px 12px 0px;
    background-color: #00BB00;
    font-family: Arial;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}
#gameover {
    display: none;
    top: 0px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    background-color: rgba(22, 28, 28, 0.95);
    z-index: 2;
}
#overmsg {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial;
    font-size: 36px;
    color: #ccc;
}
#restartbtn {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: auto;
    background-color: #00BB00;
    font-family: Arial;
    color: red;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}
.penci-container-inside.single-breadcrumb{
   margin: 10px 0px 5px 0px !important;
}
