.bg-container{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 130% 90% at 50% 45%, rgba(0, 242, 255, 0.045) 0%, transparent 52%),
        radial-gradient(ellipse 85% 100% at 0% 50%, rgba(8, 12, 20, 0.92) 0%, transparent 58%),
        radial-gradient(ellipse 85% 100% at 100% 50%, rgba(8, 12, 20, 0.92) 0%, transparent 58%),
        linear-gradient(165deg, #05070c 0%, #0c1118 42%, #080b10 100%);
}

/* Game Worlds: same play column height as sky-shooter.css #gamebox */
.game-worlds-play-shell .bg-container {
    flex: 0 0 auto;
    /*height: calc(768px * 5 / 7);
    max-height: calc(768px * 5 / 7);*/
}
#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);*/
    background-color: rgba(15, 23, 42, 0.92);
    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;
}
