/* Prompt Group Visual Indicators */

.prompt-grouped {
    border-left: 5px solid transparent;
}

/* Color Variant 1 - Blue */
.prompt-group-color-1 {
    border-left-color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.04) !important;
}
.prompt-badge-color-1 {
    background-color: #0d6efd;
    color: #fff;
}

/* Color Variant 2 - Green */
.prompt-group-color-2 {
    border-left-color: #198754 !important;
    background-color: rgba(25, 135, 84, 0.04) !important;
}
.prompt-badge-color-2 {
    background-color: #198754;
    color: #fff;
}

/* Color Variant 3 - Purple */
.prompt-group-color-3 {
    border-left-color: #6f42c1 !important;
    background-color: rgba(111, 66, 193, 0.04) !important;
}
.prompt-badge-color-3 {
    background-color: #6f42c1;
    color: #fff;
}

/* Color Variant 4 - Teal */
.prompt-group-color-4 {
    border-left-color: #20c997 !important;
    background-color: rgba(32, 201, 151, 0.04) !important;
}
.prompt-badge-color-4 {
    background-color: #20c997;
    color: #fff;
}

/* Color Variant 5 - Orange */
.prompt-group-color-5 {
    border-left-color: #fd7e14 !important;
    background-color: rgba(253, 126, 20, 0.04) !important;
}
.prompt-badge-color-5 {
    background-color: #fd7e14;
    color: #fff;
}

.prompt-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35em 0.65em;
    border-radius: 0.375rem;
}

