.standard-grid-container {
    height: 100%;
    width: 100%;
    grid-template-columns: 1fr;
    display: grid;
    gap: 8px;
}

.standard-grid {
    height: 100%;
    width: 100%;
    grid-template-rows: 28px auto;
    display: grid;
    gap: 0px;
    position: relative;
}

.standard-grid .grid-header {
    font-weight: 600;
    font-size: 16px;

    color: rgb(24,29,31);
    background-color: #cdd;
    border: 1px solid teal;
    border-bottom: none;
    border-radius: 5px 5px 0px 0px;
    position: relative;
    padding: 2px;
}

.standard-grid .grid-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
    font-weight:500;
    color: rgb(24, 29, 31);
}

.standard-grid .grid-header button {
    border-radius: 5px 5px 0px 0px;
    color: #579;
    border: 1px solid #579;
    background-color: #dee;
}

.standard-grid .grid-filter {
    font-weight: 400;
    font-size: 14px;

    color: rgb(24,29,31);
    position: absolute;
    padding: 2px;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
}

.standard-grid .grid-filter input,
.standard-grid .grid-filter select { 
    border: 1px solid lightgray;
    border-radius: 3px;
}

.standard-grid .grid-header button:hover {
    border: 1px solid rgb(24,29,31);
    background-color: #fff;
    color: rgb(24,29,31);
}

.standard-grid .busy {
    position:absolute;
    background-color: rgba(24,29,31,0.5);
    color: #dee;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.standard-grid .busy i {
    position: relative;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}

