#content
{
    margin-top: 150px;
}

.controls
{
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    border-radius: 4px;
    background-color: #505050;
    box-sizing: border-box;
    border: 1px solid #40404040;
    box-shadow: 0px 2px 2px #00000060;
}

.tooltipSettings
{
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#reverbTooltip
{
    width: 300px;
    align-content: center;
}

.cellGroup
{
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 10px;
    border-radius: 4px;
    background-color: #656565;
    border: 1px solid #555555;
    box-shadow: 0px 2px 2px #00000020;
}

.cellRow
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cell
{
    width:100%;
    /* TODO: make smaller once the grid is bigger / dynamic */
    max-width: 50px;
    height: 50px;
    margin: 5px;
	background-color: #BBBBBB;
	border-radius: 2px;
    border: 1px solid #FFFFFF40;
    box-sizing: border-box;
	transition: 0.2s;
	display: block;
	text-decoration: none;
	color: black;
    text-align: center;
}

.cell:hover
{
    box-shadow: inset 0px 0px 20px 5px #ffe3a8;
}
.cell:active
{
    transform: translateY(2px);
    box-shadow: inset 0px 0px 20px 5px #ffffff;
}

/* Active pads */
.cell.active
{
    box-shadow: inset 0px 0px 20px 5px #ffe3a8;
    background-color: #b1914e;
}
.cell.active:hover
{
    box-shadow: inset 0px 0px 20px 5px #b1554e;
    background-color: #b1914e;
}
.cell.active:active
{
    background-color: #d6b15f;
    box-shadow: inset 0px 0px 20px 5px #ffe3a8;
}