.primary {
    background-color:rgb(144, 144, 208);
    position:relative;
    min-width:15%;
    border: 1px solid grey;
}

.parent {
    display:flex;
    flex-direction:row;
}

.stor {
    visibility:hidden;
    display:flex;
    flex-direction:column;
    position:absolute;
    width:99%;
    max-height:20em;
    overflow-y:auto;
    overflow-x:hidden;
    border:1px solid black;
}

.primary:hover {
    background-color:rgb(100, 100, 208);
    cursor:pointer;
}

.primary:hover > .stor {
    visibility:visible;
}

.myOption {
    background-color:rgb(198, 198, 198);
    text-align:center;
    width: 100%;
    height:2em;
    line-height:2em;
    box-sizing:border-box;
    border: 1px solid grey;
}

.myOption:hover {
    background-color:rgb(59, 59, 59);
    color:white;
    transform: scale(1.1);
    overflow:visible;
}

.ddownSelect {
    background-color:rgb(94, 94, 94);
    color:white;
}

td {
    min-width: 30px;
    min-height: 30px;
    border-radius:1px;
    border-color:grey;
    border-style:solid;
    text-align:center;
}

.box {
    border-width:1px;
    border-style:inset;
    border-color:black;
    padding:2%;
}

input {
    max-height: min-content;
}

table {
    padding:1%;
}

td:hover {
    border-width:2px;
    /* border-color:black; */
    font-weight:bolder;
    cursor:pointer;
    transform:scale(1.1);
}

#inputs {
    display:flex;
    flex-direction:row;
    padding: 2%;
}

.find {
    background-color:rgb(95, 162, 185);
}

.vertFind {
    background-color:rgb(255, 153, 0);
}

#big {
    display:flex;
    flex-direction:row;
    padding: 2%;
}

#big > div {
    padding: 2%;
}

#redraw {
    display:flex;
    flex-direction:row;
    padding:2%;
}

.co {
    display:flex;
    flex-direction:column;
}

.label {
    border-color:rgba(0, 0, 0, 0) !important;
}

.void {
    visibility:hidden;
}

.hLabel {
    text-align:center;
}

#big > div {
    border-color:lightgrey;
    border-width:2px;
    border-style:inset;
}

select:hover {
    cursor:pointer;
}

option:hover {
    cursor:pointer;
}

#search {
    padding-top: 1%;
}

.cell {
    font-size:1em;
    border-color:grey;
    border-style:inset;
    border-width:0.08em;;
    text-align: center;
    min-width:2.2em;
    min-height:2.2em;
    aspect-ratio:1/1;
    align-content:space-evenly;
}

/* .cell:hover {
    transform:scale(1.1);
    cursor:crosshair;
} */
 
#d {
    display:flex;
    flex-direction: row;
}

#d > * {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.row {
    display:flex;
    flex-direction: row;
    align-content: space-evenly;
    text-align:center;
}

.row:hover {
    transform:scale(1.05);
    cursor:crosshair;
}

.row:hover .label {
    background-color:rgb(130, 130, 227);
    color:white;
}

.miniMatrix {
    align-content: space-evenly;
    display:flex;
    flex-direction:column;
    align-content: space-evenly;
    text-align:center;
}

.double {
    display:flex;
    flex-direction:row;
}

.double > * {
    padding:1em;
}

/* #storage {
    border-width:1px;
    border-style:inset;
    border-color:lightgrey;
} */

.both {
    background-color: rgba(123, 255, 0, 0.812);
}