#patient-calls-crudTable {
    tr {
        &.odd > * {
            background-color: $white;
            box-shadow: none !important;
        }

        &.bg-light-green > * {
            background-color: $green !important; 
            box-shadow: inset 0 0 0 9999px $green !important;
        }

        &.bg-light-blue > * {
            background-color: $light-blue !important; 
            box-shadow: inset 0 0 0 9999px $light-blue !important;
        }
        
        &.bg-light-red > * {
            background-color: $light-red !important; 
            box-shadow: inset 0 0 0 9999px $light-red !important;
        }

        .collect {
            background-color: $green;
        }
        .completed {
            background-color: $light-blue;
            padding:2px;
        }

        .action-icon {
            font-size: 24px;
        }
    }

    
    
}