diff --git a/resources/views/monitor/index.blade.php b/resources/views/monitor/index.blade.php
index 2fc094e..de645e8 100644
--- a/resources/views/monitor/index.blade.php
+++ b/resources/views/monitor/index.blade.php
@@ -34,17 +34,17 @@
@if($audition->prelimDefinition && ! $entry->hasFlag('no_show'))
@if($entry->hasFlag('failed_prelim'))
Failed
+ class="inline-flex items-center rounded-md bg-red-100 px-2 py-1 text-sm font-medium text-red-700 ">Failed
@elseif($entry->hasFlag('passed_prelim'))
Passed
+ class="inline-flex items-center rounded-md bg-green-100 px-2 py-1 text-sm font-medium text-green-700">Passed
@else
Pending
+ class="inline-flex items-center rounded-md bg-yellow-100 px-2 py-1 text-sm font-medium text-yellow-800 ">Pending
@endif
@elseif($entry->hasFlag('no_show'))
No-Show
+ class="inline-flex items-center rounded-md bg-red-100 px-2 py-1 text-sm font-medium text-red-700 ">No-Show
@endif
@if($audition->prelimDefinition)