/* 
  VZVZ Transcriptie Service Stylesheet 
  
  Hoofdkleuren:
  - Primair: #0d6efd (Blauw)
  - Secundair: #6c757d (Grijs)
  - Succes: #198754 (Groen)
  - Waarschuwing: #ffc107 (Geel)
  - Gevaar: #dc3545 (Rood)
  - Info: #0dcaf0 (Lichtblauw)
*/

/* Algemene styling */
body {
    background-color: #f8f9fa;
}

/* Zorgt dat alle tekst met juiste kleur wordt weergegeven */
.text-white {
    color: #ffffff !important;
}

/* Hover-effect op lijst-items: donkerblauwe achtergrond */
.list-group-item-action:hover {
    background-color: #0d3b71 !important;
    color: #ffffff !important;
}

.list-group-item-action:hover small,
.list-group-item-action:hover h6,
.list-group-item-action:hover span,
.list-group-item-action:hover i {
    color: #ffffff !important;
}

/* Donkerblauwe achtergrond voor conversatie-items */
.conversation-list-bg,
.agent-conversation-container,
.conversation-item,
.chat-message-container {
    background-color: #0d3b71 !important;
    color: #ffffff !important;
}

/* Zorg dat alle tekst in deze elementen wit is */
.conversation-list-bg *,
.agent-conversation-container *,
.conversation-item *,
.chat-message-container * {
    color: #ffffff !important;
}