 body {
        font-family: 'Inter', sans-serif;
        color: #2c3e50;
    }


/* css/style.css */
#unreadMessageNotification {
    margin-left: 5px; /* Space between text and badge */
    padding: .35em .65em; /* Adjust padding as needed */
    font-size: .75em; /* Adjust font size */
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    background-color: #dc3545; /* Bootstrap danger color */
    display: none; /* Hidden by default, shown by JS if count > 0 */
    
    
    
}


/* Follow-up specific colors for FullCalendar events */
.fc-event-completed-followup {
    background-color: #28a745; /* Green */
    border-color: #28a745;
}

.fc-event-pending-followup {
    background-color: #ffc107; /* Orange */
    border-color: #ffc107;
    color: #343a40; /* Dark text for better contrast */
}

.fc-event-cancelled-followup {
    background-color: #dc3545; /* Red */
    border-color: #dc3545;
}

.fc-event-default-followup {
    background-color: #6c757d; /* Grey */
    border-color: #6c757d;
}