p {
    width: 320px;
}



#grid_builder {
    margin-top: 20px;
}

#row_selector {
    margin-left: 10px;
    margin-right: 10px;
}

#col_selector {
    margin-left: 10px;
    margin-right: 10px;
}

#level_text{
    display: block;
    text-align: center;
    max-width: 95%;
    margin: auto;
    padding-top: 10px;
}

.center {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

#slider_bg {
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 9999px;
}


/* Dropdown Button */
.dropbtn {
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    min-width: 50px;
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(231, 255, 253, .4);
    min-width: 50px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {}


#grid tr
{
    display:block;
    position:relative;
    height:58px;
    top:0px;
}

#grid td:not(#deactivated) > i:hover
{
    background-color: rgb(173, 177, 180);
    border-radius: 10px;
}