.plist-custom-btn {
    width: 250px;
    display: inline-block;
    padding: 10px 0px;
    padding-left: 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px !important;
    color: #333;
    background-color: #fff;
    border-color: #333;
}

.plist-custom-btn>i {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #002664;
}

.plist-position {
    width: 250px;
    display: block;
    margin-left: auto;
}

.plist-dropdown-menu-width {
    min-width: 250px !important;
}

.patient-register-button {
    display: inline-block;
    padding: 15px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #002664;
    color: white;
}

/* 
    Custom spacing setting for patient list dashboard table headers,
    specifically for "Last Transmission" column right after the first "Patient Column"
*/
.plist-header-spacing {
    width: 120px;
}


/* Transparent background for patient list dashboard header */
.plist-table>table>thead>tr {
    background: transparent;
}

/* Bottom border color for patient list dashboard header */
.plist-table>table>thead>tr>th {
    border-width: medium;
    border-color: #4D4F55;
}

/* 
    Set min-height for patient list dashboard header to allow appropriate
    text overflow.
*/
.plist-table>.bootgrid-table th>.column-header-anchor {
    min-height: 40px;
}

/* Patient list dashboard header text settings */
.plist-table>.bootgrid-table th>.column-header-anchor>.text {
    display: block;
    margin: 0 16px 0 0;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #333;
}

/* Disable glyphicon for patient list headers */
.plist-table>.bootgrid-table th>.column-header-anchor>.icon {
    display: block;
}

/* Patient list table (odd) row css designs */
.plist-table>table>tbody>tr:nth-of-type(odd) {
    background: transparent;
    height: 40px;
}

/* Patient list table (even) row css designs */
.plist-table>table>tbody>tr:nth-of-type(even) {
    background: transparent;
    height: 40px;
}

/* Patient list table column css designs */
.plist-table>table>tbody>tr>td {
    font-size: 14px;
    border-bottom: 1px solid #333;
    vertical-align: middle;
}

/* Patient list table no result column css designs */
/* .plist-table > table > tbody > tr > .no-results {
    border: none;
} */

/* Patient list table footer spacing settings */
.plist-table>.bootgrid-footer {
    margin-top: 20px;
}

/* 
    Note that the use case for the .plist-custom-pagination and .plist-footer-info classes below
    can be found used in the grid.html file in the <script> section to customise the table pagination and footer settings.
*/

/* Patient list table footer info styling */
.plist-footer-info {
    font-weight: bold;
}

/* Restyle pagination buttons */
/* Note that font imports can be found in the project.css file */
.plist-custom-pagination>ul>li {
    font-size: 15px;
    font-weight: 500;
}

/* Pagination <a> href settings */
.plist-custom-pagination>ul>li>a,
.plist-custom-pagination>ul>li>a:hover,
.plist-custom-pagination>ul>li.disabled>a,
.plist-custom-pagination>ul>li.disabled>a:hover {
    background: none;
    border: none;
    text-shadow: none;
    cursor: pointer;
    color: #333333;
}

.plist-custom-pagination>ul>li.active>a,
.plist-custom-pagination>ul>li.active>a:hover,
.plist-custom-pagination>ul>li.active>a:focus {
    background: none;
    border: none;
    /* border-bottom: 2px solid #002664; */
    text-shadow: none;
    color: #333333;
}

.plist-custom-pagination>ul>li.active>a:after {
    content: "";
    /* This is necessary for the pseudo element to work. */
    display: block;
    /* This will put the pseudo element on its own line. */
    margin: 0 auto;
    /* This will center the border. */
    width: 20px;
    /* Change this to whatever width you want. */
    padding-top: 5px;
    /* This creates some space between the element and the border. */
    border-bottom: 3px solid #002664;
    /* This creates the border. Replace black with whatever color you want. */
}
