.resource-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background-color: #fdbe4f;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1rem;
    color: #18345d;
    border: none;
    transition: all 0.3s ease;
}

.resource-type-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.resource-type-badge__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.resource-type-badge__text {
    white-space: nowrap;
}

/* Color variations - you can customize these */
.resource-type-badge.badge-primary {
    background-color: #007bff;
    color: #fff;
    border-color: #0056b3;
}

.resource-type-badge.badge-success {
    background-color: #28a745;
    color: #fff;
    border-color: #1e7e34;
}

.resource-type-badge.badge-warning {
    background-color: #ffc107;
    color: #333;
    border-color: #d39e00;
}

.resource-type-badge.badge-danger {
    background-color: #dc3545;
    color: #fff;
    border-color: #bd2130;
}