﻿.quickgrid[theme=minimal] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.quickgrid[theme=minimal] thead th {
    padding: .5rem;
    background-color: #0038a8;
    color: #ffffff;
    font-weight: 600;
}

.quickgrid[theme=minimal] thead th div,
.quickgrid[theme=minimal] thead th button {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    align-items: center;
    width: 100%;
}

.quickgrid[theme=minimal] tbody tr:hover {
    background-color: #eff6ff;
}

.quickgrid[theme=minimal] tbody tr {
    transition: background-color 0.2s ease-in-out;
}

.quickgrid[theme=minimal] tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.quickgrid[theme=minimal] tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.quickgrid[theme=minimal] tbody td {
    padding: .5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quickgrid[theme=minimal] .sort-indicator {
    position: absolute;
    right: 1rem;
    width: 1.25rem;
    color: #ffffff;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
}