.dashBoard .main .main-setup{
    display: none;
    padding: .5rem;
    border-radius: .5rem;
    background: #f5f5f5;
    min-height: 100vh;
    overflow: auto;
    max-height: 100vh;
}
.dashBoard .main .main-setup.show{
    display: block;
}

.dashBoard .main .main-setup .container{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: .5rem;
    background:#f5f5f5;
    width: 100%;
    height: 100%;
}
.dashBoard .main .main-setup .container span{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: #fff;
    height: 100%;
    width: 100%;
    font-size: 1rem;
    font-weight: bolder;
    padding: 1rem;
}

.dashBoard .main .main-setup .container .editSheet{
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0;
}
.dashBoard .main .main-setup .container .editSheet:hover{
    background: #c0c0c0;
}
.dashBoard .main .main-setup .container .editSheet a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #000;
    gap: .5rem;
}

.dashBoard .main .main-setup .container .btnReload{
    background: #333;
}
.dashBoard .main .main-setup .container .btnReload a{
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashBoard .main .main-setup .container .deleteDB{
    cursor: pointer;
    background: rgb(109, 32, 32);
    color: #fff;
}