.brew-rewards-logo {
    max-width: 200px;
    display: block;
    margin: 0 auto 20px auto;
}

.brew-table-container {
    max-width: 100% !important;
}

.brew-table-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

/* Make rows visually separated */
/* #brew-rewards-table */
.brew-table {
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    /* vertical gap between rows */
    /* max width keeps from getting scrollbar when using ajax datatable */
    max-width: 99%;
    width: 100% !important;
}

/* brew member rewards list table head */
.brew-table-head {
    display: none;
}

/* brew admin table head */
.brew-table-head.brew-admin-table-head {
    display: none;
    background-color: transparent !important;
}

.brew-table-head.brew-admin-table-head tr th {
    color: #ffffff !important;
    background-color: #000000 !important;
}

.brew-table-head.brew-admin-table-head tr th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.brew-table-head.brew-admin-table-head tr th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Row "card" styling */
/* #brew-rewards-table */
.brew-table tbody tr {
    background: transparent;
    box-shadow: none;
}

/* even table row cells */
.brew-table tbody tr.even td {}

/* Cell padding */
/* #brew-rewards-table */
.brew-table tbody td {
    /* background: #ffffff; */
    padding: 14px 16px !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Fix rounded corners */
/* #brew-rewards-table */
.brew-table tbody tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* #brew-rewards-table */
.brew-table tbody tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.brew-reward-progress-detail-container {
    display: flex;
    flex-flow: row nowrap;
    color: #ffffff;
    background-color: #000000;
    border-radius: 7px;
    margin-bottom: 15px;
}

.brew-reward-progress-detail-section {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 10px;
}