﻿.allocate-grid {
    display: flex;
    flex-direction: column;
}

.allocate-grid-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 34px;
    padding-right: 16px;
}

    .allocate-grid-row.scrollable {
        padding: 0;
    }

    .allocate-grid-row.header {
        background-color: #939596;
        color: #000000;
    }

    .allocate-grid-row > div {
        width: 10%;
        text-align: center;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .allocate-grid-row > div.group {
            background-color: #EAECED;
        }

        .allocate-grid-row > div:first-of-type {
            width: 16%;
            text-align: left;
        }

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 16px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
