/* Activity Type Colors */
.badge-activity-type {
    display: inline-block;
    padding: 2px 6px;
    margin: 3px;
    border-radius: 8px;
    border: 1px solid currentColor;
    color: currentColor;
    background-color: transparent;
    font-size: 0.85em;
    text-transform: capitalize;
    white-space: nowrap;
    cursor: default;
}

/* Bootstrap Colors (already defined in Bootstrap) */
/* .text-success - green */
/* .text-info - cyan */
/* .text-primary - blue */
/* .text-secondary - gray */
/* .text-danger - red */

/* Custom Colors */
.text-light-blue {
    color: #4DA3FF;
    border-color: #4DA3FF;
}

.text-teal-green {
    color: #20C997;
    border-color: #20C997;
}

.text-purple {
    color: #6F42C1;
    border-color: #6F42C1;
} 