#soundboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 5px;
    justify-content: center;
}

#soundboard div {
    background: #555;
    aspect-ratio: 1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    cursor: pointer;
}

#soundboard div h3{
    text-align: center;
    cursor: pointer;
}

#soundboard div:hover {
    background: #444;
}

.se-active {
    background: #444 !important;
}

select {
    background: #444;
    color: orange;
    width: 100%;
    margin: auto;
}

.device-select-div {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.device-select-div h4 {
    color: orange;
    width: fit-content;
    margin: 1em auto;
}