﻿/*Custom button used in ChoosePatient page*/
table#patientlist {
    border-collapse: collapse;
}

.selected {
    background-color: #f8f9fa !important;
    color: #000000
}

#patientlist tr {
    background-color: #ffffff;
    border-top: 1px solid #fff;
}

    #patientlist tr:hover {
        background-color: #f8f9fa;
    }

#patientlist th {
    background-color: #fff;
}

#patientlist th, #patientlist td {
    padding: 3px 5px; 
}

    #patientlist td:hover {
        cursor: pointer;
    }

custombutton {
    background: #f69320;
    color: #fff;
    border: none;
    position: relative;
    height: 60px;
    font-size: 1.6em;
    padding: 0 2em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
    border-radius: 12px;
}

    custombutton:hover {
        background: #fff;
        color: #5f6060;
    }

    custombutton:before, custombutton:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 2px;
        width: 0;
        background: #069db8;
        transition: 400ms ease all;
    }

    custombutton:after {
        right: inherit;
        top: inherit;
        left: 0;
        bottom: 0;
    }

    custombutton:hover:before, custombutton:hover:after {
        width: 100%;
        transition: 800ms ease all;
    }


